我想为我的菜单按钮添加垂直滚动效果,当我的鼠标指针在背景位置向下滚动时,当离开菜单按钮区域时,背景位置向上滚动,就像这些水平菜单: http ://www.htmldrive.net/items /demo/180/jQuery-Flip-Menu-using-backgroundPosition-Plugin
我的代码:
css
#home{
width: 46px;
height:12px;
background-image: url(http://imageshack.us/a/img577/5152/w6n.gif);
background-position: 0 0;
background-repeat: no-repeat;
}
html
<div id="home"></div>
Javascript
$.fn.animateBG = function(x, y, speed) {
var pos = this.css('background-position').split(' ');
this.x = pos[0] || 0,
this.y = pos[1] || 0;
$.Animation( this, {
x: x,
y: y
}, {
duration: speed
}).progress(function(e) {
this.css('background-position', e.tweens[0].now+'px '+e.tweens[1].now+'px');
});
return this;
}
$.fn.stopBG = function(x, y, speed) {
var pos = this.css('background-position').split(' ');
this.x = pos[0] || 0,
this.y = pos[1] || 0;
$.Animation( this, {
x: x,
y: y
}, {
duration: speed
}).progress(function(e) {
this.css('background-position', e.tweens[0].now+'px '+e.tweens[1].now+'px');
});
return this;
}
$('#home').hover(function(){
$("#home").animateBG(0, -12, 300);
},function(){$("#home").stopBG(0, 0, 300);});
问题是,当我的鼠标指针超出菜单按钮区域时,向上滚动效果不起作用。
谢谢。