jQuery实现鼠标停留在图片上,图片缩小,移开,图片还原
时间: 2024-05-26 21:10:09 浏览: 41
。你可以使用以下的 jQuery 代码来实现此功能:
$(document).ready(function() {
// 缩小图片
$('.image').hover(function() {
$(this).css('transform', 'scale(0.8)');
// 图片还原
}, function() {
$(this).css('transform', 'scale(1)');
});
});
当然,如果您对 jQuery 不熟悉,也可以使用 CSS 实现该效果。
相关问题
jQuery实现鼠标停留在图片上,图片缩小,移开,图片还原
jQuery可以使用mouseover和mouseout事件来实现鼠标悬停在图片上时的效果。具体代码如下:
```javascript
$(document).ready(function(){
// 当鼠标悬停在图片上时,图片缩小
$("img").mouseover(function(){
$(this).animate({width: "90%"}, 200);
});
// 当鼠标移开时,图片还原
$("img").mouseout(function(){
$(this).animate({width: "100%"}, 200);
});
});
```
希望这个回答对您有帮助!
jQuery实现鼠标停留在多个图片上,图片缩小,移开,图片还原
jQuery可以通过hover()函数来实现图片的缩小和还原,在CSS中定义好图片的缩小效果,然后在hover()函数中调用该效果即可。例如:
CSS部分:
img {
transition: all .3s ease-out;
}
jQuery部分:
$('img').hover(function() {
$(this).css('transform', 'scale(0.8)');
}, function() {
$(this).css('transform', 'none');
});
这样,鼠标停留在图片上时,图片会变小,移开后会还原原来的大小。
阅读全文