jpscontracting/templates/blocks/foot.html

75 lines
3.0 KiB
HTML
Raw Normal View History

</div>
<!-- Wrapper -->
<!-- jQuery (necessary for JavaScript plugins) -->
<script src="{{ url_for('static', filename='scripts/jquery.js') }}"></script>
<script src="{{ url_for('static', filename='scripts/bootstrap.min.js') }}"></script>
<script src="{{ url_for('static', filename='scripts/modernizr.js') }}"></script>
<script src="{{ url_for('static', filename='scripts/jquery.flexslider-min.js') }}"></script>
<script src="{{ url_for('static', filename='scripts/jquery.prettyPhoto.js') }}"></script>
<script src="{{ url_for('static', filename='scripts/isotope.min.js') }}"></script>
<script src="{{ url_for('static', filename='scripts/custom.js') }}"></script>
<script src="{{ url_for('static', filename='scripts/owl.carousel.min.js') }}"></script>
<script src="{{ url_for('static', filename='scripts/sticky_header.js') }}"></script>
<script src="{{ url_for('static', filename='scripts/jquery.nicescroll.min.js') }}"></script>
<script src="{{ url_for('static', filename='scripts/functions.js') }}"></script>
<script >
$('.px-carousel').owlCarousel({
nav: true,
margin: 20,
navText: [
"<i class=' icon-angle-left'></i>",
"<i class='icon-angle-right'></i>"
],
responsive: {
0: {
items: 1 // In this configuration 1 is enabled from 0px up to 479px screen size
},
480: {
items: 2, // from 480 to 677
nav: false // from 480 to max
},
678: {
items: 3, // from this breakpoint 678 to 959
center: false // only within 678 and next - 959
},
960: {
items: 4, // from this breakpoint 960 to 1199
center: false,
loop: false
},
1200: {
items: 4,
}
}
});
jQuery(window).load(function(){
jQuery('.px-testimonial-slider, .px-bannerslider').flexslider({
animation: "fade",
prevText:"<em class='icon-arrow-left9'></em>",
nextText:"<em class='icon-arrow-right9'></em>",
start: function(slider){
jQuery('body').removeClass('loading');
}
});
});
</script>
2017-01-25 23:07:07 +00:00
<script>
/* ---------------------------------------------------------------------------
* Counter Integers Function
* --------------------------------------------------------------------------- */
jQuery(document).ready(function( $ ) {
$('.custom-counter').counterUp({
delay: 10,
time: 1000
});
});
</script>
</body>
</html>