欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

如何使用css實(shí)現(xiàn)3D圖像輪轉(zhuǎn)效果-創(chuàng)新互聯(lián)

這篇文章主要為大家展示了“如何使用css實(shí)現(xiàn)3D圖像輪轉(zhuǎn)效果”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“如何使用css實(shí)現(xiàn)3D圖像輪轉(zhuǎn)效果”這篇文章吧。

創(chuàng)新互聯(lián)主要從事成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)扎賚特,10年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792

首先看html文件,div.billboard為效果的容器,利用10個(gè)div.poster分割圖像,每個(gè)poster中有三個(gè)face,分別用來承載三個(gè)圖像。

XML/HTML Code復(fù)制內(nèi)容到剪貼板

<div class="billboard">     
    <div class="poster">     
        <div class="face panel1 p1"></div>     
        <div class="face panel2 p1"></div>     
        <div class="face panel3 p1"></div>     
    </div>     
    <div class="poster">     
        <div class="face panel1 p2"></div>     
        <div class="face panel2 p2"></div>     
        <div class="face panel3 p2"></div>     
    </div>     
    <div class="poster">     
        <div class="face panel1 p3"></div>     
        <div class="face panel2 p3"></div>     
        <div class="face panel3 p3"></div>     
    </div>     
    <div class="poster">     
        <div class="face panel1 p4"></div>     
        <div class="face panel2 p4"></div>     
        <div class="face panel3 p4"></div>     
    </div>     
    <div class="poster">     
        <div class="face panel1 p5"></div>     
        <div class="face panel2 p5"></div>     
        <div class="face panel3 p5"></div>     
    </div>     
    <div class="poster">     
        <div class="face panel1 p6"></div>     
        <div class="face panel2 p6"></div>     
        <div class="face panel3 p6"></div>     
    </div>     
    <div class="poster">     
        <div class="face panel1 p7"></div>     
        <div class="face panel2 p7"></div>     
        <div class="face panel3 p7"></div>     
    </div>     
    <div class="poster">     
        <div class="face panel1 p8"></div>     
        <div class="face panel2 p8"></div>     
        <div class="face panel3 p8"></div>     
    </div>     
    <div class="poster">     
        <div class="face panel1 p9"></div>     
        <div class="face panel2 p9"></div>     
        <div class="face panel3 p9"></div>     
    </div>     
    <div class="poster">     
        <div class="face panel1 p10"></div>     
        <div class="face panel2 p10"></div>     
        <div class="face panel3 p10"></div>     
    </div>     
</div>

CSS文件這里我們用到了sass,用的是scss語法。

CSS Code復(fù)制內(nèi)容到剪貼板

//變量初始化     
//圖像分塊個(gè)數(shù),如要更改,html需要進(jìn)行相應(yīng)的修改     
$numPoster:10;      
     
//輪換圖像個(gè)數(shù),如要更改,html需要進(jìn)行相應(yīng)的修改     
$numFace:3;      
     
//圖像寬度      
$width:600px;      
     
//圖像高度      
$height:320px;      
     
//盒子的設(shè)置     
.billboard {       
    width:$width;       
    margin:100px auto;       
}      
     
//圖像條左浮動(dòng)      
.poster {       
    float:left;       
    width:$width/$numPoster;       
    height:$height;       
}     
     
//圖像條面的統(tǒng)一設(shè)置,絕對定位、3d動(dòng)畫設(shè)置       
.face {       
    position:absolute;       
    height:$height;       
    width:$width/$numPoster;       
    transform-origin:50% 50% -17px;       
    backface-visibility: hidden;       
    transform-style:preserve-3d;       
    perspective:350px;       
}       
     
//圖像條面分別設(shè)置背景圖像、動(dòng)畫     
@for $i from 1 through $numFace{       
  .poster .panel#{$i} {       
    background:url(http://gx.zptc.cn/whqet/img/#{$i}.jpg);       
    transform:transformY(360deg/$numFace*($i - 1));       
    animation: rotateMe#{$i} 10s infinite;       
  }       
  @keyframes rotateMe#{$i} {       
    0% {       
        transform:rotateY(360deg/$numFace*($i - 1));       
    }       
    9% {       
        transform:rotateY(360deg/$numFace*($i - 1));       
    }       
    24% {       
        transform:rotateY(360deg/$numFace*($i));       
    }       
    42% {       
        transform:rotateY(360deg/$numFace*($i));       
    }       
    57% {       
        transform:rotateY(360deg/$numFace*($i + 1));       
    }       
    75% {       
        transform:rotateY(360deg/$numFace*($i + 1));       
    }       
    90% {       
        transform:rotateY(360deg/$numFace*($i + 2));       
    }       
    100% {       
        transform:rotateY(360deg/$numFace*($i + 2));       
    }       
  }       
}      
     
//圖像條面的背景偏移     
@for $i from 1 through $numPoster {       
  .poster .p#{$i} {background-position:-($width/$numPoster*($i - 1)) top;}       
}

以上是“如何使用css實(shí)現(xiàn)3D圖像輪轉(zhuǎn)效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

本文名稱:如何使用css實(shí)現(xiàn)3D圖像輪轉(zhuǎn)效果-創(chuàng)新互聯(lián)
網(wǎng)頁網(wǎng)址:http://aaarwkj.com/article38/codesp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)網(wǎng)站建設(shè)、定制網(wǎng)站電子商務(wù)、商城網(wǎng)站、移動(dòng)網(wǎng)站建設(shè)、動(dòng)態(tài)網(wǎng)站

廣告

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

h5響應(yīng)式網(wǎng)站建設(shè)
九九九热免费在线观看| 在线观看国产激情免费视频| 亚洲精品欧美综合第四区| 日本在线不卡一区二区| 白白色发布青青在线视频观看| 91亚洲欧美日韩在线观看| 在线日韩中文字幕二区| 男女午夜激情四射视频| 日本免费一区二区三区手机在线| 日本一级特黄大片做受在线观看 | av毛片天堂在线观看| 美女在线免费观看av| 青青草青青草在线观看视频| 国产精品自在线拍亚洲另类| 日本熟女视频中文字幕| 熟女人妻精品一二三四| 日韩毛片免费看美日韩毛片| 成人欧美精品一区二区不卡| 国产一区二区精品久久岳√| 不卡免费av在线高清| 黄色av免费无毒网站| 日韩视频精品一区二区| 青青草针对华人在线视频| 在线不卡日本v二区| 中文字幕亚洲精品四区| 国产午夜在线影院一区二区| 国产三级伦理在线播放| 精品国产三级a在线观看网站| 日韩精品人妻中文字幕满员| 少妇的诱惑免费在线播放| 日本成年网站在线观看| 国产美女精品一区二区三区| 日韩中文字幕亚洲精品一| 国产精品盗摄一区二区三区| 精品女同一区二区三区久久| 国产精品午夜福利天堂| 91在线视频国产网站| 久久精品国产亚洲av清纯| 精品人妻日韩中文字幕| 免费av男人天堂亚洲天堂| 99人妻一区二区三区在线|