File: /home/imensosw/kambojengineers.com/footer.php
<footer>
<div class="row blk_bg padd_tb wht">
<div class="col-lg-6 col-sm-6 margt_10">
<p>© 2016 Kamboj Engineer. All rights reserved.</p>
</div>
<div class="col-lg-6 col-sm-6">
<div class="socail_icon flex">
<div class="icon_list "> <a href="#"><i class="fa fa-facebook"></i></a></div>
<div class="icon_list"> <a href="#"><i class="fa fa-twitter"></i></a> </div>
<div class="icon_list"><a href="#"><i class="fa fa-pinterest-p"></i></a></div>
<div class="icon_list"> <a href="#"><i class="fa fa-google-plus"></i></a></div>
</div>
</div>
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript">
(function( $ ) {
//Function to animate slider captions
function doAnimations( elems ) {
//Cache the animationend event in a variable
var animEndEv = 'webkitAnimationEnd animationend';
elems.each(function () {
var $this = $(this),
$animationType = $this.data('animation');
$this.addClass($animationType).one(animEndEv, function () {
$this.removeClass($animationType);
});
});
}
//Variables on page load
var $myCarousel = $('#carousel-example-generic'),
$firstAnimatingElems = $myCarousel.find('.item:first').find("[data-animation ^= 'animated']");
//Initialize carousel
$myCarousel.carousel();
//Animate captions in first slide on page load
doAnimations($firstAnimatingElems);
//Pause carousel
$myCarousel.carousel('pause');
//Other slides to be animated on carousel slide event
$myCarousel.on('slide.bs.carousel', function (e) {
var $animatingElems = $(e.relatedTarget).find("[data-animation ^= 'animated']");
doAnimations($animatingElems);
});
$('#carousel-example-generic').carousel({
interval:3000,
pause: "false"
});
})(jQuery);
</script>
<script type="text/javascript">
$('a[href^="#"]').click(function() {
var target_val=$(this).attr('href');
$('html,body').animate({
scrollTop: $(target_val).offset().top - 10},
'slow');
});
</script>
</footer>