Vue.js实现图片切换功能
短信预约 -IT技能 免费直播动态提醒
本文实例为大家分享了Vue.js实现图片切换功能的具体代码,供大家参考,具体内容如下
实现功能如下
文件目录如下,要实现本功能只需要修改图片的存储位置即可
代码如下
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script class="lazy" data-src="js/vue.js" type="text/javascript" charset="utf-8"></script>
</head>
<style type="text/css">
div {
margin: 0 auto;
width:200px;
height: 300px;
border: 1px solid aqua;
}
img {
margin: 0 auto;
width: 200px;
height: 250px;
border: 1px solid aqua;
}
</style>
<body>
<div id="app">
<img :class="lazy" data-src="imgclass="lazy" data-src[index]" >
<button type="button" @click="prephoto()">上一张</button>
<button type="button" @click="nextphoto()">下一张</button>
</div>
<script type="text/javascript">
var app = new Vue({
el:"#app",
data:{
imgclass="lazy" data-src:["./img/1.jpg","./img/2.jpg"],
index:1
},
methods:{
prephoto:function(){
this.index--;
if(this.index===-1)
{
this.index=this.imgclass="lazy" data-src.length-1;
}
console.log(this.index)
},
nextphoto:function(){
this.index++;
if(this.index===this.imgclass="lazy" data-src.length){
this.index=0;
}
console.log(this.index)
}
}
})
</script>
</body>
</html>
适合初学者。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341