1 /*!2 * jQuery UI Effects Clip @VERSION3 *4 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)5 * Dual licensed under the MIT or GPL Version 2 licenses.6 * http://jquery.org/license7 *8 * http://docs.jquery.com/UI/Effects/Clip9 *10 * Depends:11 * jquery.effects.core.js12 */13 (function( $, undefined ) {1415 $.effects.clip = function(o) {1617 return this.queue(function() {1819 // Create element20 var el = $(this), props = ['position','top','bottom','left','right','height','width'];2122 // Set options23 var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode24 var direction = o.options.direction || 'vertical'; // Default direction2526 // Adjust27 $.effects.save(el, props); el.show(); // Save & Show28 var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper29 var animate = el[0].tagName == 'IMG' ? wrapper : el;30 var ref = {31 size: (direction == 'vertical') ? 'height' : 'width',32 position: (direction == 'vertical') ? 'top' : 'left'33 };34 var distance = (direction == 'vertical') ? animate.height() : animate.width();35 if(mode == 'show') { animate.css(ref.size, 0); animate.css(ref.position, distance / 2); } // Shift3637 // Animation38 var animation = {};39 animation[ref.size] = mode == 'show' ? distance : 0;40 animation[ref.position] = mode == 'show' ? 0 : distance / 2;4142 // Animate43 animate.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() {44 if(mode == 'hide') el.hide(); // Hide45 $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore46 if(o.callback) o.callback.apply(el[0], arguments); // Callback47 el.dequeue();48 }});4950 });5152 };5354 })(jQuery);1 /*! 2 * jQuery UI Effects Clip @VERSION 3 * 4 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 * Dual licensed under the MIT or GPL Version 2 licenses. 6 * http://jquery.org/license 7 * 8 * http://docs.jquery.com/UI/Effects/Clip 9 * 10 * Depends: 11 * jquery.effects.core.js 12 */ 13 (function( $, undefined ) { 14 15 $.effects.clip = function(o) { 16 17 return this.queue(function() { 18 19 // Create element 20 var el = $(this), props = ['position','top','bottom','left','right','height','width']; 21 22 // Set options 23 var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode 24 var direction = o.options.direction || 'vertical'; // Default direction 25 26 // Adjust 27 $.effects.save(el, props); el.show(); // Save & Show 28 var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper 29 var animate = el[0].tagName == 'IMG' ? wrapper : el; 30 var ref = { 31 size: (direction == 'vertical') ? 'height' : 'width', 32 position: (direction == 'vertical') ? 'top' : 'left' 33 }; 34 var distance = (direction == 'vertical') ? animate.height() : animate.width(); 35 if(mode == 'show') { animate.css(ref.size, 0); animate.css(ref.position, distance / 2); } // Shift 36 37 // Animation 38 var animation = {}; 39 animation[ref.size] = mode == 'show' ? distance : 0; 40 animation[ref.position] = mode == 'show' ? 0 : distance / 2; 41 42 // Animate 43 animate.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() { 44 if(mode == 'hide') el.hide(); // Hide 45 $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore 46 if(o.callback) o.callback.apply(el[0], arguments); // Callback 47 el.dequeue(); 48 }}); 49 50 }); 51 52 }; 53 54 })(jQuery);1 /*! 2 * jQuery UI Effects Clip @VERSION 3 * 4 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 * Dual licensed under the MIT or GPL Version 2 licenses. 6 * http://jquery.org/license 7 * 8 * http://docs.jquery.com/UI/Effects/Clip 9 * 10 * Depends: 11 * jquery.effects.core.js 12 */ 13 (function( $, undefined ) { 14 15 $.effects.clip = function(o) { 16 17 return this.queue(function() { 18 19 // Create element 20 var el = $(this), props = ['position','top','bottom','left','right','height','width']; 21 22 // Set options 23 var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode 24 var direction = o.options.direction || 'vertical'; // Default direction 25 26 // Adjust 27 $.effects.save(el, props); el.show(); // Save & Show 28 var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper 29 var animate = el[0].tagName == 'IMG' ? wrapper : el; 30 var ref = { 31 size: (direction == 'vertical') ? 'height' : 'width', 32 position: (direction == 'vertical') ? 'top' : 'left' 33 }; 34 var distance = (direction == 'vertical') ? animate.height() : animate.width(); 35 if(mode == 'show') { animate.css(ref.size, 0); animate.css(ref.position, distance / 2); } // Shift 36 37 // Animation 38 var animation = {}; 39 animation[ref.size] = mode == 'show' ? distance : 0; 40 animation[ref.position] = mode == 'show' ? 0 : distance / 2; 41 42 // Animate 43 animate.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() { 44 if(mode == 'hide') el.hide(); // Hide 45 $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore 46 if(o.callback) o.callback.apply(el[0], arguments); // Callback 47 el.dequeue(); 48 }}); 49 50 }); 51 52 }; 53 54 })(jQuery);
联系我们 |
---|
文章看不懂?联系我们为您免费解答!免费助力个人,小企站点! |
① 电话:020-2206-9892 |
② QQ咨询:1025174874 |
③ 邮件:info@361sale.com |
④ 工作时间:周一至周五,9:30-18:30,节假日休息 |
THE END
暂无评论内容