您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
今天就跟大家聊聊有关利用Vue制作一个菜单切换功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
具体内容如下
完整代码
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ margin: 0px auto; padding: 0px; } #app{ margin-top: 50px; width:400px; height:300px; border: 1px solid #000000; } li{ list-style: none; float: left; width: 100px; height:50px; line-height:50px; font-size: 18px; font-weight: bold; background: #EEeeee; text-align: center; cursor: pointer; } #wear div{ width: 400px; height: 250px; line-height: 250px; font-size: 20px; font-weight: bold; text-align: center; } #wear img{ width: 400px; height: 250px; } .active{ background: #405c83; } </style> </head> <body> <div id="app"> <ul> <li v-on:click="searId=1" v-bind:class="{active:searId==1}">1</li> <!--v-bind可以省略--> <li @click="searId=2" :class="{active:searId==2}">2</li> <li @click="searId=3" :class="{active:searId==3}">3</li> <li @click="searId=4" :class="{active:searId==4}">4</li> </ul> <div id="wear"> <div v-show="searId==1" ><img src="../img/chun.png"></div> <div v-show="searId==2"><img src="../img/xia.png"></div> <div v-show="searId==3"><img src="../img/qiu.png"></div> <div v-show="searId==4"><img src="../img/dong.png"></div> </div> </div> </body> <script src="../js/vue.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript"> new Vue({ el:"#app", data:{ searId:1 //第一个为默认 } }) </script> </html>
看完上述内容,你们对利用Vue制作一个菜单切换功能有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。