九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
web CSS3 實(shí)現(xiàn)3D旋轉(zhuǎn)木馬

3D 旋轉(zhuǎn)木馬是CSS中常見的特效之一,旋轉(zhuǎn)木馬可以有多種方法實(shí)現(xiàn),這里我使用純CSS實(shí)現(xiàn)這種動(dòng)畫的效果。

 

    簡(jiǎn)要介紹一下重點(diǎn)

transform: rotateY(60deg) translateZ(300px);
這是必須先旋轉(zhuǎn)后 沿著z軸移動(dòng),不然會(huì)錯(cuò)亂,translateZ是沿著Z軸移動(dòng),其值越大,我們看見的圖像就越大。
 1 <!DOCTYPE html>
 2 <html lang="en">
 3 
 4 <head>
 5     <meta charset="UTF-8">
 6     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 7     <title>Document</title>
 8     <style>
 9         body {
10             perspective: 1000px;
11         }
12         
13         section {
14             position: relative;
15             width: 300px;
16             height: 200px;
17             margin: 150px auto;
18             transform-style: preserve-3d;
19             animation: roate 10s linear infinite;
20         }
21         
22         section div {
23             position: absolute;
24             top: 0;
25             left: 0;
26             width: 100%;
27             height: 100%;
28             /* background: url(media/dog.jpg) no-repeat; */
29             background-color: yellow;
30         }
31         
32         section:hover {
33             animation-play-state: paused;
34         }
35         
36         @keyframes roate {
37             0% {
38                 transform: rotateY(0);
39             }
40             100% {
41                 transform: rotateY(360deg);
42             }
43         }
44         
45         section div:nth-child(1) {
46             transform: rotateY(0) translateZ(300px);
47             /* 可以添加自己想添加的圖片 這里用背景色pink代替 下面都一樣*/
48             background-color: pink;
49         }
50         
51         section div:nth-child(2) {
52             transform: rotateY(60deg) translateZ(300px);
53         }
54         
55         section div:nth-child(3) {
56             transform: rotateY(120deg) translateZ(300px);
57         }
58         
59         section div:nth-child(4) {
60             transform: rotateY(180deg) translateZ(300px);
61         }
62         
63         section div:nth-child(5) {
64             transform: rotateY(240deg) translateZ(300px);
65         }
66         
67         section div:nth-child(6) {
68             transform: rotateY(300deg) translateZ(300px);
69         }
70     </style>
71 </head>
72 
73 <body>
74     <section>
75         <div></div>
76         <div></div>
77         <div></div>
78         <div></div>
79         <div></div>
80         <div></div>
81     </section>
82 </body>
83 
84 </html>

 

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
一篇文章教會(huì)你利用html5和css3實(shí)現(xiàn)3D立方體效果圖
純CSS3寫旋轉(zhuǎn)的輪播圖,開門大吉,旋轉(zhuǎn)的導(dǎo)航欄
旋轉(zhuǎn)木馬& 代碼
CSS3 3D Transform | css3教程
[轉(zhuǎn)載]玩轉(zhuǎn) CSS 3D: 原理篇
前端|CSS3實(shí)現(xiàn)立體旋轉(zhuǎn)動(dòng)畫效果
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服