Bizdire - Business Directory and html5 template

Accordions

Displays collapsible content panels for presenting information in a limited amount of space. General accordion HTML structure in Bizdire template.

	
		
			<div class="card">
				<div class="card-header">
					<h3 class="card-title">Default Accordion</h3>
					<div class="card-options">
						<a href="javascript:void(0)" class="card-options-collapse" data-bs-toggle="card-collapse"><i class="fe fe-chevron-up"></i></a>
						<a href="javascript:void(0)" class="card-options-remove" data-bs-toggle="card-remove"><i class="fe fe-x"></i></a>
					</div>
				</div>
				<div class="card-body">
					<div class="panel-group" id="accordion1" role="tablist" aria-multiselectable="true">
						<div class="panel panel-default active">
							<div class="panel-heading " role="tab" id="headingOne">
								<h4 class="panel-title">
									<a role="button" data-bs-toggle="collapse" data-parent="#accordion1" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">

										Collapsible Group Item #1
									</a>
								</h4>
							</div>
							<div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
								<div class="panel-body">
									Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus
									terry richardson ad squid. 3 wolf moon officia aute, non cupidatat
									skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod.
									Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid
									single-origin coffee nulla assumenda shoreditch et. Nihil anim
									keffiyeh helvetica, craft beer labore wes anderson cred nesciunt
									sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings
									occaecat craft beer farm-to-table, raw denim aesthetic synth
									nesciunt you probably haven't heard of them accusamus labore
									sustainable VHS.
								</div>
							</div>
						</div>
					</div><!-- panel-group -->
				</div>
			</div>
		
	
Sweet Alert

General Sweet Alert HTML structure in Bizdire template.

		
			
				<div class="card-body">

					<input type="button" class="btn btn-success mt-2" value="success alert" id="click">
					<input type="button" class="btn btn-primary mt-2" value="Warning alert" id="click1">
					<input type="button" class="btn btn-warning mt-2" value="Danger alert" id="click2">
				</div>

				<div class="card-body">
					<table class="table card-table">
						<tbody><tr>
							<td>Title</td>
							<td><input type="text" class="form-control" placeholder="Title text" id="title"></td>
						</tr>
						<tr>
							<td>Message</td>
							<td><input type="text" class="form-control" placeholder="Your message" id="message"></td>
						</tr>
						<tr>
							<td colspan="2" class="mt-5 text-center">
								<input type="button" class="btn btn-success mt-2" value="Simple alert" id="but1">&nbsp;
								<input type="button" class="btn btn-primary mt-2" value="Alert with title" id="but2">&nbsp;
								<input type="button" class="btn btn-pink mt-2" value="Alert with image" id="but3">&nbsp;
								<input type="button" class="btn btn-warning mt-2" value="With timer" id="but4">
							</td>
						</tr>
					</tbody></table>
				</div>
					
		
	
	
		
<!--- SWEET ALERT SCSS-->
"assets/scss/plugins/sweetalert.scss"
		
	
	
<!-- SWEET-ALERT JS -->
<script src="../assets/plugins/sweet-alert/sweetalert.min.js"></script>
<script src="../assets/js/sweet-alert.js"></script>
	
	

Note : After Changing scss you must run gulp command i.e, gulp watch . Refer gulp page for more gulp commands click here.

Type URL
Plugin Link bootstrap-sweetalert/
Rating

General Rating HTML structure in Bizdire template.

	
		
			<div class="rating-stars block my-rating"></div>
		
	
	
		
			<!--  Ratings2 Plugin -->
			"../assets/scss/plugins/star-rating-svg.scss"
		
	
    

<!-- Star Rating-1 Js  -->
<script src="../assets/plugins/ratings-2/jquery.star-rating.js"></script>
<script src="../assets/plugins/ratings-2/star-rating.js"></script>

	
	

Note : After Changing scss you must run gulp command i.e, gulp watch . Refer gulp page for more gulp commands click here.

Type URL
Plugin Link star-rating-svg
Rating Style 2

General Rating HTML structure in Bizdire template.

	
		
<div class="rating-stars block" id="rating-1" data-stars="2">

		
	
    
<!-- Star Rating Js  -->
<script src="../assets/plugins/rating/jquery-rate-picker.js"></script>
<script src="../assets/plugins/rating/rating-picker.js"></script>
	
	
Type URL
Plugin Link jquery-rate-picker
Days Hours Sec Counter in Under construction page

General Days Counters HTML structure in Bizdire template.

	
		
<div id="launch_date"></div>
		
	
	
		
<!-- Internal Jquery.Coutdown scss-->
"assets/scss/plugins/countdown.scss"
		
	
    
<!-- Internal Jquery.Coutdown js -->
<script src="../assets/plugins/jquery-countdown/jquery.plugin.min.js"></script>
<script src="../assets/plugins/jquery-countdown/jquery.countdown.js"></script>
<script src="../assets/plugins/jquery-countdown/countdown.js"></script>

		
	

Note : After Changing scss you must run gulp command i.e, gulp watch . Refer gulp page for more gulp commands click here.