This article example shares the specific code of Vue to realize button switching pictures for your reference. The specific content is as follows Tab Implementation steps1. Realize static UI effects Implementing tag structure and style in a traditional way 2. Reconstruct UI effects based on data Refactor the static structure and style into a Vue template syntax-based form to handle event binding and js control logic Set the basic style{ overflow: hidden; padding: 0; margin: 0; } .tab ul li { box-sizing: border-box; padding: 0; float: left; width: 100px; height: 45px; line-height: 45px; list-style: none; text-align: center; border-top: 1px solid #ccc; border-right: 1px solid #ccc; cursor: pointer; } .tab ul li.active { background-color: orange; } .tab ul li:first-child { border-left: 1px solid blue; } .tab div { width: 500px; height: 300px; display: none; text-align: center; font-size: 30px; line-height: 300px; border: 1px solid blue; border-top: 0px; } .tab div.current { display: block; } Implementing static layout<div id="app"> <button v-on:click="handla">Switch forward</button> <button v-on:click="handlc">One-way cycle switch</button> <button v-on:click="handle">Switch back</button> <div class="tab"> <ul> <li :class="currentIndex==index?'active':''" :key="item.id" v-for="(item,index) in list">{{item.title}} </li> </ul> <div :class="currentIndex==index?'current':''" :key="item.id" v-for="(item,index) in list"> <img :src="item.path"> </div> </div> </div> Implement specific functions<script type="text/javascript" src="../js/vue.js"></script> <script type="text/javascript"> /* */ var vm = new Vue({ el: '#app', data: { currentIndex: 0, list: [{ id: 1, title: 'apple', path: 'img/apple.png' }, { id: 2, title: 'orange', path: 'img/orange.png' }, { id: 3, title: 'lemon', path: 'img/lemon.png' }] }, methods: { handle: function () { if (this.currentIndex < 2) { this.currentIndex = this.currentIndex + 1 } }, handla: function () { if (this.currentIndex > 0) { this.currentIndex = this.currentIndex - 1 } }, handlc: function () { this.currentIndex = this.currentIndex + 1 if (this.currentIndex > 2) { this.currentIndex = 0 } }, } }) </script> Final result The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Tutorial on installing mysql5.7.17 via yum on redhat7
>>: Detailed explanation of Linux Namespace User
I don't know if you have ever encountered suc...
Table of contents 1. Digital Enumeration 2. Strin...
Assume there is such an initial code: <!DOCTYP...
How to view version information under Linux, incl...
This article records the creation of a USB boot d...
Basic three-column layout .container{ display: fl...
Preface What is state We all say that React is a ...
Table of contents Previous 1. What is setup synta...
mysql 5.6.35 winx64 free installation version con...
In fact, XHTML 1.0 is divided into two types (thr...
Implementation ideas: First of all, the alarm inf...
Recently, we have been capturing SQL online for o...
Note: This article has been translated by someone ...
1. Download the pip installation package accordin...
Achieve results Implementation Code html <div ...