您好,登錄后才能下訂單哦!
這篇文章主要介紹HTML5如何實(shí)現(xiàn)移動端點(diǎn)擊翻牌功能,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
效果
一個大小的兩個面,在同一位置上
正面的Y軸旋轉(zhuǎn)為0度
背面的Y軸旋轉(zhuǎn)180度
隱藏被旋轉(zhuǎn)的 div 元素的背面(backface-visibility)
點(diǎn)擊的時候同時改變正面和背面的旋轉(zhuǎn)角度,給一個動畫的時間(transition)
記得換圖片路徑哦~
<!doctype html> <html> <head> <meta charset="utf-8"> <title>css3 翻牌</title> </head> <body> <style> * { margin: 0; padding: 0; } ul, li { margin: 0; padding: 0; list-style: none; } .flip-container, .front1, .back1 { width: 283px; height: 283px; } .front1, .back1 { position: absolute; top: 0; left: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; transition: 0.6s ease-out; -webkit-transition: .6s ease-out; transform-style: preserve-3d; -webkit-transform-style: preserve-3d; } .front1 img, .back1 img { width: 283px; height: 283px; overflow: hidden; } .front1 { z-index: 2; transform: rotateY(0deg); -webkit-transform: rotateY(0deg); } .back1 { z-index: 1; transform: rotateY(-180deg); -webkit-transform: rotateY(-180deg); } .back2 { transform: rotateY(0deg); -webkit-transform: rotateY(0deg); z-index: 2; } .front2 { transform: rotateY(180deg); -webkit-transform: rotateY(180deg); z-index: 1 } </style> <ul> <li class="flip-container "> <div class="front1 flipper"><img src="./快捷方式/壁紙/2.jpg"></div> <div class="back1 flipper"><img src="./快捷方式/壁紙/1.jpg"></div> </li> </ul> </body> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> <script> let is1 = true; document.getElementsByClassName('flip-container')[0].onclick = function(){ if(is1) { $(this).find('.front1').addClass('front2'); $(this).find('.back1').addClass('back2'); }else{ $(this).find('.front1').removeClass('front2'); $(this).find('.back1').removeClass('back2'); } is1 = !is1; } </script> </html>
以上是“HTML5如何實(shí)現(xiàn)移動端點(diǎn)擊翻牌功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(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)容。