悬浮效果hover: 就是鼠标放上去以及离开时产生的变化。
vue 中有两个属性分别为 onmouseover onmouseout
我们可以利用这两个属性来达成我们所需要的效果:
代码如下

				<img  onmouseover="this.src='/static/image/xxx.png'"
				  onmouseout="this.src='/static/image/xxx.png'"
			 src="/static/image/xxxx.png">


以上代码为微信图标默认为灰色图片,当鼠标移动至上面讲替换领一张图片,为绿色。

相关文章:

  • 2021-08-12
  • 2022-01-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2021-09-29
猜你喜欢
  • 2021-12-09
  • 2021-12-09
  • 2022-12-23
  • 2021-12-25
  • 2021-08-16
  • 2021-07-31
  • 2022-12-23
相关资源
相似解决方案