PluginProbe
Property Hive / 1.4.49
Property Hive v1.4.49
2.3.1 2.3.0 2.2.6 2.2.5 2.2.4 2.2.3 2.2.2 1.4.46 1.4.47 1.4.48 1.4.49 1.4.5 1.4.50 1.4.51 1.4.52 1.4.53 1.4.54 1.4.55 1.4.56 1.4.57 1.4.58 1.4.59 1.4.6 1.4.60 1.4.61 All 261 releases
propertyhive / assets / js / flexslider / jquery.flexslider.init.js

jquery.flexslider.init.js in Property Hive 1.4.49, at assets/js/flexslider/jquery.flexslider.init.js

26 lines 653 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function($) {
2
3 $(window).load(function() {
4 // The slider being synced must be initialized first
5 $('#carousel').flexslider({
6 animation: "slide",
7 controlNav: false,
8 animationLoop: false,
9 slideshow: false,
10 itemWidth: 150,
11 itemMargin: 5,
12 asNavFor: '#slider'
13 });
14
15 $('#slider').flexslider({
16 animation: "slide",
17 controlNav: false,
18 animationLoop: false,
19 slideshow: false,
20 sync: "#carousel",
21 smoothHeight: true
22 });
23 });
24
25 })(jQuery);
26