溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么用Vue實(shí)現(xiàn)牌面翻轉(zhuǎn)效果

發(fā)布時(shí)間:2022-10-13 13:58:28 來源:億速云 閱讀:258 作者:iii 欄目:開發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“怎么用Vue實(shí)現(xiàn)牌面翻轉(zhuǎn)效果”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“怎么用Vue實(shí)現(xiàn)牌面翻轉(zhuǎn)效果”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。

1.實(shí)現(xiàn)效果

實(shí)現(xiàn)一個(gè)點(diǎn)擊沿中心Y軸翻轉(zhuǎn)的翻轉(zhuǎn)效果

怎么用Vue實(shí)現(xiàn)牌面翻轉(zhuǎn)效果

2.方法

分前(front)、后(behind)兩部分,behind的div通過css布局設(shè)定為將其翻轉(zhuǎn)180度在front的div后面隱藏不顯示,點(diǎn)擊執(zhí)行翻轉(zhuǎn)動(dòng)畫,在執(zhí)行翻轉(zhuǎn)動(dòng)畫的時(shí)候設(shè)置behind的div顯示,之后將front的div隱藏.依次反復(fù)。

3.具體代碼

<template>
<div id="try">
 <!-- box_rolling下執(zhí)行正面翻轉(zhuǎn)動(dòng)畫   -->
<div :class="{"box_rolling":isRolling}" @click="isRolling = !isRolling">
 <!-- 前面div -->
 <div>
  <div>
   <img src="@/assets/images/s1.png"/>
  </div>
 </div>
 <!-- 后面div -->
 <div>
  <div>
   <img src="@/assets/images/s2.png"/>
  </div>
 </div>
</div>
</div>
</template>
<script>

export default{
 name:"try",
 data(){
  return{
   isRolling:false
  }
 }
}
</script>
<style>
#try{
 .rollbox{
  position: relative;
     perspective: 1000px;
  width:200px;
  height: 400px;
  margin:100px auto;

    &_front,
    &_behind{
   transform-style: preserve-3d; //表示所有子元素在3D空間中呈現(xiàn)
       backface-visibility: hidden;  //元素背面向屏幕時(shí)是否可見
        transition-duration:.5s;
     transition-timing-function:"ease-in";
   background:#008080;
   .contentbox{
    width:200px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    >img{
     width:100px;
    }
   }
    }
    &_behind{
      transform: rotateY(180deg);
      visibility:hidden;  //元素不可見,但占據(jù)空間
      position: absolute;
      top:0;
      bottom:0;
      right: 0;
      left: 0;
    }
 }
 .box_rolling{
    .rollbox_front{
      transform: rotateY(180deg);
      visibility:hidden;
    }
    .rollbox_behind{
      transform: rotateY(360deg);
      visibility:visible;
    }
  }
}
</style>

讀到這里,這篇“怎么用Vue實(shí)現(xiàn)牌面翻轉(zhuǎn)效果”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI