Sha256: c820c112d2cc7130751af53f767836e834cf683dd6e4e818ec30d527c55e69fc
Contents?: true
Size: 518 Bytes
Versions: 19
Compression:
Stored size: 518 Bytes
Contents
/*! scrollVert transition plugin for Cycle2; version: 20121120 */ (function($) { "use strict"; $.fn.cycle.transitions.scrollVert = { before: function( opts, curr, next, fwd ) { opts.API.stackSlides( opts, curr, next, fwd ); var height = opts.container.css('overflow','hidden').height(); opts.cssBefore = { top: fwd ? -height : height, left: 0, opacity: 1, display: 'block' }; opts.animIn = { top: 0 }; opts.animOut = { top: fwd ? height : -height }; } }; })(jQuery);
Version data entries
19 entries across 19 versions & 2 rubygems