vue鼠标悬停事件图片放大
时间: 2023-10-30 20:04:53 浏览: 94
vue鼠标悬停图片放大特效
5星 · 资源好评率100%
可以使用Vue的`@mouseover`和`@mouseleave`事件来实现鼠标悬停事件,然后使用CSS的`transform`属性来放大图片。
HTML代码:
```html
<template>
<div class="image-container">
<img :src="imageUrl" alt="image" @mouseover="enlargeImage" @mouseleave="resetImage" />
</div>
</template>
```
CSS代码:
```css
.image-container {
position: relative;
width: 200px;
height: 200px;
}
.image-container img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: transform 0.3s ease-out;
}
.image-container:hover img {
transform: scale(1.2);
}
```
JS代码:
```js
export default {
data() {
return {
imageUrl: 'https://example.com/image.jpg',
};
},
methods: {
enlargeImage() {
// do something when mouse over the image
},
resetImage() {
// do something when mouse leaves the image
},
},
};
```
这样当鼠标悬停在图片上时,图片会放大1.2倍。
阅读全文