免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

如何使用Vue實現點擊顯示不同圖片的效果

這篇文章主要介紹如何使用Vue實現點擊顯示不同圖片的效果,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

南安ssl適用于網站、小程序/APP、API接口等需要進行數據傳輸應用場景,ssl證書未來市場廣闊!成為成都創新互聯公司的ssl證書銷售渠道,可以享受市場價格4-6折優惠!如果有意向歡迎電話聯系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!

使用Vue中的以下知識點來顯示效果

①:v-for:循環遍歷數據
②:v-bind:class={ }:綁定樣式
③:v-on:click(簡寫@click):點擊事件
④:v-if:判斷

<!DOCTYPE html>
<html>
<head>
 <title>點擊顯示相對應的圖片</title>
 <style type="text/css">
 *{
 margin: 0;
 padding: 0;
 list-style: none;
 }
 .myul{
 display: flex;
 }
 .myul li{
 border: 1px solid orange;
 height: 150px;
 width: 150px;
 flex-direction: row;
 text-align: center;
 line-height: 150px;
 }
 .content{
 border: 1px solid grey;
 height: 350px;
 width: 600px;
 }
 .content img{
 height: 350px;
 width: 600px;
 }
 .active{
 background: #3A9ffb;
 color: white;
 }
 </style>
</head>
<body>
 <div class="app">
 <div class="title">
 <ul class="myul">
 <li v-for="(item,index) in mess" v-bind:class="{ 'active': status === index}" v-on:click="changeImg(index)">
  {{item.content}}
 </li>
 </ul>
 </div>
 <div class="content">
 <img src="img/1.jpg" v-if="status === 0">
 <img src="img/2.jpg" v-if="status === 1">
 <img src="img/84.jpg" v-if="status === 2">
 <img src="img/85.jpg" v-if="status === 3">
 </div>
 </div>
</body>
</html>
<script src="https://cdn.bootcss.com/vue/2.5.20/vue.js"></script>
<script type="text/javascript">
 new Vue({
 el:".app",
 data:{
 status:0, //狀態顯示
 mess:[
 {id:0,content:"點擊顯示圖片一"},
 {id:1,content:"點擊顯示圖片二"},
 {id:2,content:"點擊顯示圖片三"},
 {id:3,content:"點擊顯示圖片四"}
 ]
 },
 methods:{
 changeImg:function(index){
 this.status=index;
 }
 }
 })
</script>

以上是“如何使用Vue實現點擊顯示不同圖片的效果”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注創新互聯行業資訊頻道!

網站欄目:如何使用Vue實現點擊顯示不同圖片的效果
本文網址:http://m.newbst.com/article16/jocdgg.html

成都網站建設公司_創新互聯,為您提供網站設計公司關鍵詞優化、網站營銷、品牌網站建設、App開發、外貿建站

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

h5響應式網站建設