我制作了一个jQuery插件,在应用于单个元素时效果很好 当我将它应用于另一个元素时,之前的停止表现得像它应该的那样 这样,只有最后应用的元素才有效 在开发插件时,我考虑使用什么showld为这个元素创建工作?
这是我制作插件的方式:
(function($) {
$.fn.scrollabix = function(params) {
return this.each(function(){
// my code
});
};
})(jQuery);
这是整个代码:
(function($) {
// jQuery plugin definition
$.fn.scrollabix = function(params) {
return this.each(function(){
// OPTIONS/Config
$defaultOptions =
{
direction: 'vertical'
};
$.extend($defaultOptions, params);
// LOCAL PARAMETERS
$self = $(this);
$scrolled = $("> div", this);
// GET INFO
$selfHeight = parseInt($self.css("height"));
$scrolledHeight = parseInt($('> div', $self).css("height"));
$selfWidth = parseInt($self.css("width"));
$scrolledWidth = parseInt($('> div', $self).css("width"));
$leftOutside = ($scrolledHeight) - parseInt($selfHeight) /*+ 50*/; // user for Vertivcal only
// PLUGIN ACTIONS
actions = {
continous : 0,
slideUp : function(q)
{
if($leftOutside > 0)
{
slideBy =(120 * 20) / q;
currTop = parseInt($scrolled.css("top"));
absCurrTop = Math.abs(currTop);
if(absCurrTop + slideBy > ($leftOutside))
{
$scrolled.stop().animate({top : '-' + $leftOutside + 'px'}, 250);
}
else
{
if(absCurrTop < ($leftOutside))
{
$scrolled.stop().animate({top : '-=' + slideBy}, 250, 'linear', function(){
if(actions.continous == 1)
{
actions.slideUp(q);
}
});
}
}
}
},
slideDown : function(q)
{
if($leftOutside > 0)
{
slideBy =(120 * 20) / q;
currTop = parseInt($scrolled.css("top"));
absCurrTop = Math.abs(currTop);
if(absCurrTop - slideBy < 0)
{
slideBy = absCurrTop;
}
if(currTop < 0)
{
$scrolled.stop().animate({top : '+=' + slideBy}, 250, 'linear', function(){
if(actions.continous == 1)
{
actions.slideDown(q);
}
});
}
}
},
slideLeft : function(q)
{
if($leftOutside > 0)
{
consolex('slideLeft');
}
},
slideRight : function(q)
{
if($leftOutside > 0)
{
consolex('slideRight');
}
}
}
// CREATE INFRASTRUCTURE
$self.css({
overflow : 'hidden',
position : 'relative'
});
$scrolled.css({
position : 'absolute',
top : '0px',
left : '0px'
});
if($defaultOptions.direction == 'vertical')
{
$self.mousemove(function(e){
var x = parseInt(e.pageX - this.offsetLeft);
var y = parseInt(e.pageY - this.offsetTop);
if(y > ($selfHeight - 120) && y < $selfHeight)
{
actions.continous = 1;
actions.slideUp($selfHeight - y);
}
else if(y < 120 && y >= 1)
{
actions.continous = 1;
actions.slideDown(y);
}
else
{
actions.continous = 0;
}
}).mouseout(function(){
actions.continous = 0;
});
}
else if ($defaultOptions.direction == 'horizontal')
{
$leftOutside = $scrolledWidth - $selfWidth;
$self.mousemove(function(e){
$scrolledWidth = parseInt($scrolled.css('width'));
var x = parseInt(e.pageX - this.offsetLeft);
$selfWidth = parseInt($self.css("width"));
$leftOutside = ($scrolledWidth) - parseInt($selfWidth);
consolex($leftOutside);
if(x < 300 && x >= 1)
{
actions.continous = 1;
actions.slideRight(x);
}
else if( x > $selfWidth - 300)
{
actions.continous = 1;
actions.slideLeft(x);
}
}).mouseout(function(){
actions.continous = 0;
});
}
//return this;
});
};
})(jQuery);
答案 0 :(得分:2)
看看这些链接来整理你的插件
http://addyosmani.com/blog/essential-jquery-plugin-patterns/
http://alexsexton.com/?p=51
http://jqueryboilerplate.com/
它们都代表了一种现代且可扩展的插件创建方法
答案 1 :(得分:1)
您正在使用插件内的this.each()
以及在每个元素上应用逻辑的正确方法。如果你在each
区块内搞乱,那么可能会产生问题。
答案 2 :(得分:0)
你可以看一下jQuery Boilerplate描述的模式。该模式使用prototypical inheritance,可以确保在每个元素上实例化插件的新实例。关键是这些方面:
// A really lightweight plugin wrapper around the constructor,
// preventing against multiple instantiations
$.fn[pluginName] = function ( options ) {
return this.each(function () {
if (!$.data(this, 'plugin_' + pluginName)) {
$.data(this, 'plugin_' + pluginName, new Plugin( this, options ));
}
});
}
答案 3 :(得分:0)
在我看来,就像你在每次循环迭代中覆盖全局变量一样。将var
添加到要在本地使用的每个变量,例如$self
,$scrolled
等。