所以我有这个小 js 代码来动画图像(没什么花哨的)
$(".afbeelding").mouseenter(function () {
$(this).stop().animate({ width: '120%' }, 500);
}, function () {
$(this).stop().animate({ width: '120%' }, 500);
});
$(".afbeelding").mouseleave(function () {
$(this).stop().animate({ width: '100%' }, 500);
}, function () {
$(this).stop().animate({ width: '100%' }, 500);
});
这在放入 jsFiddle 时非常有效。
但是不知何故,当我尝试将其放入真实站点时,图像没有动画。
我为这个站点使用了 asp.net 和 vb。
这是 jsFiddle: http: //jsfiddle.net/ZvjxV/1/ 这是页面:http ://www.vannooijen.com/NL/collectie.aspx
有什么东西可以阻止它吗?