gpt4 book ai didi

javascript - Jquery onmouseover 图像大小增加

转载 作者:行者123 更新时间:2023-12-01 01:55:10 24 4
gpt4 key购买 nike

我正在尝试实现一种效果,当鼠标悬停在图像上时,图像会变大 50%,并在鼠标移出其区域时立即返回。用jquery可以做到这一点吗?如何?没有jquery 可以做到这一点吗?如果没有jquery,做起来有多难?

最佳答案

给你:

$('img').load(function() {
$(this).data('height', this.height);
}).bind('mouseenter mouseleave', function(e) {
$(this).stop().animate({
height: $(this).data('height') * (e.type === 'mouseenter' ? 1.5 : 1)
});
});

现场演示: http://jsfiddle.net/simevidas/fwUMx/5/

关于javascript - Jquery onmouseover 图像大小增加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5357724/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com