我已经为我的网站制作了这个简单的插件,它运行良好但是使用IE和jQuery 1.10.1。 也许有些东西不再受支持了?
您可以在此处查看有效版本:http://jsfiddle.net/newbrigand/7UpNS/112/
(function ($) {
$.fn.shftr = function (options) {
var defaults = {
speed: 250,
marginTop: -100
};
options = $.extend(defaults, options);
return this.each(function () {
var o = options;
$('.shftr').children().hover(function () {
$(this).children().stop().animate({
marginTop: o.marginTop
}, o.speed);
},
function () {
$(this).children().stop().animate({
marginTop: o.marginTop - o.marginTop
}, o.speed);
});
});
};
}(jQuery));