Vue.js鼠标悬浮更换图片功能
作者:HaiJing1995 时间:2024-04-30 10:42:35
最近自己做的项目中设计师要求分类栏中鼠标悬停更换图片,大致实现出来的效果就是这样:
这个在jQuery中是个很简单的事,但是在vue中我还是第一次实现。
首先将所有的选中后图片都覆盖到没选中图片上
html代码如下
<ul>
<li>
<a href="">
<img src="../../../img/goods/study.png" alt="学习">
<img class="hide_tab" src="../../../img/goods/study_1.png" alt="学习">
</a>
</li>
<li>
<a href="">
<img src="../../../img/goods/life.png" alt="生活">
<img class="hide_tab" src="../../../img/goods/life_1.png" alt="生活">
</a>
</li>
<li>
<a href="" >
<img src="../../../img/goods/sport.png" alt="运动">
<img class="hide_tab" src="../../../img/goods/sport_1.png" alt="运动">
</a>
</li>
<li>
<a href="">
<img src="../../../img/goods/clothes.png" alt="服饰">
<img class="hide_tab" src="../../../img/goods/clothes_1.png" alt="服饰">
</a>
</li>
<li>
<a href="" >
<img src="../../../img/goods/hat.png" alt="鞋帽">
<imgclass="hide_tab" src="../../../img/goods/hat_1.png" alt="鞋帽">
</a>
</li>
<li>
<a href="" >
<img src="../../../img/goods/food.png" alt="食品">
<img class="hide_tab" src="../../../img/goods/food_1.png" alt="食品">
</a>
</li>
<li>
<a href="">
<img src="../../../img/goods/other.png" alt="其他">
<img class="hide_tab" src="../../../img/goods/other_1.png" alt="其他">
</a>
</li>
</ul>
css代码如下
.right {
float: left;
ul {
margin-left: 1px;
li {
display: inline-block;
margin-left: 12px;
width: 100px;
height: 100px;
a{
position: relative;
display: inline-block;
width: 100px;
height: 100px;
.hide_tab{
position: absolute;
bottom: 0;
}
}
}
}
}
其实就是很简单的通过position:absolute进行了布局,现在选中样式的图片已经全部覆盖到了没有选中样式图片之上了。
接下来就需要一个变量控制他们的显隐。这个变量应该是一个和每个分类一一对应的,那这个变量就不应该是一个简单的布尔值,而是一个数字,和每个分类图片对应。
我定义这个变量叫做active,在data中声明
data(){
return{
active: 0
}
}
再定义一个方法控制active变量的变化
showActive(index) {
this.active = index;
}
方法中的index参数就是鼠标悬浮时传入的值
修改html代码如下
<ul>
<li>
<a href="" @mouseenter="showActive(1)" @mouseleave="showActive(0)">
<img src="../../../img/goods/study.png" alt="学习">
<img v-show="active === 1" class="hide_tab" src="../../../img/goods/study_1.png" alt="学习">
</a>
</li>
<li>
<a href="" @mouseenter="showActive(2)" @mouseleave="showActive(0)">
<img src="../../../img/goods/life.png" alt="生活">
<img v-show="active === 2" class="hide_tab" src="../../../img/goods/life_1.png" alt="生活">
</a>
</li>
<li>
<a href="" @mouseenter="showActive(3)" @mouseleave="showActive(0)">
<img src="../../../img/goods/sport.png" alt="运动">
<img v-show="active === 3" class="hide_tab" src="../../../img/goods/sport_1.png" alt="运动">
</a>
</li>
<li>
<a href="" @mouseenter="showActive(4)" @mouseleave="showActive(0)">
<img src="../../../img/goods/clothes.png" alt="服饰">
<img v-show="active === 4" class="hide_tab" src="../../../img/goods/clothes_1.png" alt="服饰">
</a>
</li>
<li>
<a href="" @mouseenter="showActive(5)" @mouseleave="showActive(0)">
<img src="../../../img/goods/hat.png" alt="鞋帽">
<img v-show="active === 5" class="hide_tab" src="../../../img/goods/hat_1.png" alt="鞋帽">
</a>
</li>
<li>
<a href="" @mouseenter="showActive(6)" @mouseleave="showActive(0)">
<img src="../../../img/goods/food.png" alt="食品">
<img v-show="active === 6" class="hide_tab" src="../../../img/goods/food_1.png" alt="食品">
</a>
</li>
<li>
<a href="" @mouseenter="showActive(7)" @mouseleave="showActive(0)">
<img src="../../../img/goods/other.png" alt="其他">
<img v-show="active === 7" class="hide_tab" src="../../../img/goods/other_1.png" alt="其他">
</a>
</li>
</ul>
只有在当前index和active相等时,才会显示已选中分类的图片。
而鼠标离开时,传入一个没有与之对应的0,这样就没有显示了。
本文已被整理到了《Vue.js前端组件学习教程》,欢迎大家学习阅读。
关于vue.js组件的教程,请大家点击专题vue.js组件学习教程进行学习。
标签:Vue.js,悬浮,更换
0
投稿
猜你喜欢
asp如何实现强制登录注册?
2010-05-24 18:13:00
Python中的np.random.seed()随机数种子问题及解决方法
2023-01-15 20:14:02
解决mysql ERROR 1017:Can't find file: '/xxx.frm' 错误
2024-01-13 18:57:43
python 实现二维列表转置
2021-04-20 10:00:06
python保存图片时如何和原图大小一致
2022-07-13 03:34:36
分享五个超实用Python脚本,减少垃圾软件负担
2022-07-18 18:38:59
解密新型SQL Server无文件持久化恶意程序的问题
2024-01-17 08:34:12
Pytorch关于Dataset 的数据处理
2021-04-16 08:40:54
Python利用Pydub实现自动分割音频
2022-10-08 22:02:48
C#实现远程连接ORACLE数据库的方法
2024-01-16 05:59:20
Python异步爬取知乎热榜实例分享
2022-02-26 04:48:47
PHP根据IP判断地区名信息的示例代码
2023-09-10 14:05:55
基于Python绘制一个摸鱼倒计时界面
2022-09-02 03:03:26
将自己的数据集制作成TFRecord格式教程
2022-02-01 14:49:37
推荐系统MostPopular算法的Python实现方式
2022-04-21 14:44:24
Oracle 11.2.0.4打补丁的方法
2024-01-13 08:01:26
OpenCV图像处理GUI功能详解
2021-01-26 15:55:34
Pandas中两个dataframe的交集和差集的示例代码
2022-05-24 14:52:37
如何用python批量调整视频声音
2023-10-14 06:51:57
Yii配置文件用法详解
2024-05-11 09:55:39