Sha256: 0bc790eb6010287037b8d0159d46d7d8416e1f5570400141de406465fc7c6c1e
Contents?: true
Size: 1.2 KB
Versions: 25
Compression:
Stored size: 1.2 KB
Contents
// $(document).ready(function () { var $carousel_div = $('#gallery3'); $carousel_div.slick({ slidesToShow: 1, slidesToScroll: 1, autoplay: false, fade: true, arrows: true, speed: 200, dots: false, infinite: true, asNavFor: '#gallery3_nav' }); if (typeof(small_frames_dots) != 'undefined' && typeof(small_frames_slidesToShow) != 'undefined' && small_frames_dots !== undefined && small_frames_slidesToShow !== undefined) { $('#gallery3_nav').slick({ slidesToShow: small_frames_slidesToShow, slidesToScroll: 1, asNavFor: '#gallery3', dots: small_frames_dots, //centerMode: true, arrows: false, focusOnSelect: true }); setTimeout(function () { var $b = $("#gallery3_nav").find(".img-holder"); //console.log($b); $b.bind({ mouseenter: function () { $(this).addClass("plusOpacity"); }, mouseleave: function () { $(this).removeClass("plusOpacity"); } }) }, 100); } });
Version data entries
25 entries across 25 versions & 1 rubygems