国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

純CSS實現(xiàn)可切換旋轉(zhuǎn)的立體小盒子

周國輝 / 1554人閱讀

摘要:先把上了效果圖原理用實現(xiàn)立體的盒子其實挺簡單的,其核心就是的變換。但是因為本有個放大的效果,單層容器似乎做不到,所以用了兩層。

好久沒更新了,咳咳。
情況是這樣的,周五在公司前端組開技術(shù)分享會,擔心干貨不夠,所以周四晚上連夜寫了這么一個Demo出來嘩眾取寵,實際上效果還是挺不錯的,這次裝了一手好逼,只不過當時組內(nèi)的妹子們都沒來,沒能看到這盛大的場面,唉,簡直遺憾至極。

先把Demo上了:http://output.jsbin.com/joqidi

效果圖

原理

用CSS3實現(xiàn)立體的盒子其實挺簡單的,其核心就是CSS3的transform變換。
更詳細的介紹請移步張大大的文章:《CSS3 3D transform變換,不過如此!》


我在這邊簡單說下本Demo的原理:

1. 用一個DIV.cube-wrap做外部容器,并給其設(shè)置 -webkit-perspective相關(guān)屬性;
.cube-wrap{
    position: relative;
    height: 100%;
    transition: .6s;
    -webkit-perspective: 2000;
    -webkit-perspective-origin: 50% 50%;
}

注:可以調(diào)整perspective和perspective-origin的值來看效果,一看即懂

2.再用一個DIV.cube做內(nèi)部容器
.cube{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 100px;
    margin: auto;
    transition: .8s;
    -webkit-transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50% -75px;
    -webkit-backface-visibility: visible;
}

其實一般的話只要一層容器就夠了,直接把perspective設(shè)置在body上。但是因為本Demo有個放大的效果,單層容器似乎做不到~~,所以用了兩層。

3.在內(nèi)部容器放6個DIV來充當6個面,然后運用transform變換來讓它們組成一個立體的小盒子
.cube-face{
    position: relative;
    background-color: #eb4c89;
    outline: 1px solid rgba(0,0,0,.1);
    outline-offset: -1px;
}
.cube-face-top{
    position: absolute;
    width: 300px;
    height: 150px;
    top: -150px;
    left: 0;
    -webkit-transform: rotateX(90deg);
    -webkit-transform-origin: 0 100%;
}
.cube-face-top:after,
.cube-face-bottom:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.1);
}
.cube-face-left{
    position: absolute;
    top: 0;
    width: 150px;
    height: 100px;
    left: -150px;
    -webkit-transform: rotateY(-90deg);
    -webkit-transform-origin: 100% 0;
}

.cube-face-left:after,
.cube-face-right:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.2);
}
.cube-face-front{
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100px;
}
.cube-face-back{
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100px;
    -webkit-transform: translateZ(-150px) rotateY(180deg);
}
.cube-face-right{
    position: absolute;
    top: 0;
    width: 150px;
    height: 100px;
    right: -150px;
    -webkit-transform: rotateY(90deg);
    -webkit-transform-origin: 0 0;
}
.cube-face-bottom{
    position: absolute;
    top: 100px;
    width: 300px;
    height: 150px;
    -webkit-transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
}

里面的幾個::after是為了在給其中幾個面加上陰影,讓效果更“真實”一點

5.現(xiàn)在的話一個立體的小盒子已經(jīng)完成了,不過需要把內(nèi)部容器.cube旋轉(zhuǎn)一下,才能看到效果,我們用一排按鈕來實現(xiàn)對.cube的transform:rotate的控制:
#show-front:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(0) rotateY(0);
}
#show-back:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(0) rotateY(180deg);
}
#show-left:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(0) rotateY(90deg);
}
#show-right:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(0) rotateY(-90deg);
}
#show-top:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(-90deg) rotateY(0);
}
#show-bottom:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(90deg) rotateY(0);
}

看吧,這里又用到了:checked和~的神奇組合。

完整的DOM結(jié)構(gòu)如下



  
  Cube


    
    
    
    
    
    
    
    
Front
Back
Top
Left
Right
BOttom
完整的CSS代碼如下
html,body{
    background-color: #eb4c89;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.cube-wrap{
    position: relative;
    height: 100%;
    transition: .6s;
    -webkit-perspective: 2000;
    -webkit-perspective-origin: 50% 50%;
}
#zoom-cube:checked ~ .cube-wrap{
    transform: scale(1.6);
}
.cube{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 100px;
    margin: auto;
    transition: .8s;
    -webkit-transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50% -75px;
    -webkit-backface-visibility: visible;
}
#show-front:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(0) rotateY(0);
}
#show-back:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(0) rotateY(180deg);
}
#show-left:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(0) rotateY(90deg);
}
#show-right:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(0) rotateY(-90deg);
}
#show-top:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(-90deg) rotateY(0);
}
#show-bottom:checked ~ .cube-wrap .cube{
    -webkit-transform: rotateX(90deg) rotateY(0);
}
.cube-face{
    position: relative;
    background-color: #eb4c89;
    outline: 1px solid rgba(0,0,0,.1);
    outline-offset: -1px;
}
.cube-face i{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 40px;
    margin: auto;
    color: #fff;
    font-size: 36px;
    text-align: center;
    line-height: 40px;
}
.cube-face-top{
    position: absolute;
    width: 300px;
    height: 150px;
    top: -150px;
    left: 0;
    -webkit-transform: rotateX(90deg);
    -webkit-transform-origin: 0 100%;
}
.cube-face-top:after,
.cube-face-bottom:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.1);
}
.cube-face-left{
    position: absolute;
    top: 0;
    width: 150px;
    height: 100px;
    left: -150px;
    -webkit-transform: rotateY(-90deg);
    -webkit-transform-origin: 100% 0;
}
.cube-face-left:after,
.cube-face-right:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.2);
}
.cube-face-front{
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100px;
}
.cube-face-back{
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100px;
    -webkit-transform: translateZ(-150px) rotateY(180deg);
}
.cube-face-right{
    position: absolute;
    top: 0;
    width: 150px;
    height: 100px;
    right: -150px;
    -webkit-transform: rotateY(90deg);
    -webkit-transform-origin: 0 0;
}
.cube-face-bottom{
    position: absolute;
    top: 100px;
    width: 300px;
    height: 150px;
    -webkit-transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
}
input{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.button-wrap{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 840px;
    height: 50px;
    margin: 0 auto;
    font-size: 0;
    text-align: center;
}
.button-wrap label{
    display: inline-block;
    width: 120px;
    height: 50px;
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 52px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
    background-color: rgba(255,255,255,.2);
    transform: translateY(50px);
}
.button-wrap:hover label{
    transform: translateY(0);
}
.button-wrap label:hover{
    background-color: rgba(255,255,255,.3);
}
#show-front:checked ~ .button-wrap .for-front,
#show-back:checked ~ .button-wrap .for-back,
#show-left:checked ~ .button-wrap .for-left,
#show-right:checked ~ .button-wrap .for-right,
#show-top:checked ~ .button-wrap .for-top,
#show-bottom:checked ~ .button-wrap .for-bottom,
#zoom-cube:checked ~ .button-wrap .for-zoom-cube{
    background-color: #fff;
    color: #eb4c89;
}

照舊只是演示,所以只加了-webkit-前綴。

好了,就這樣了,各位周日愉快!

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/49613.html

相關(guān)文章

  • 不會做動畫程序猿不是好動畫師(如何用css3動畫做動畫)

    摘要:一過渡一的作用二的屬性二和動畫一動畫序列書寫簡例二書寫簡例常用屬性簡寫屬性三完整動畫簡例代碼三轉(zhuǎn)換一轉(zhuǎn)換縮放移動旋轉(zhuǎn)設(shè)置元素轉(zhuǎn)換的中心點綜合性寫法二轉(zhuǎn)換三維坐標系透視呈現(xiàn)位移旋轉(zhuǎn)一過渡一的作用如果你有一個盒子,他的體內(nèi)也有個小盒子。 ...

    xeblog 評論0 收藏0
  • Codepen 每周精選:不能錯過23個頁面特效(2018-5-14)

    摘要:按下右側(cè)的點擊預(yù)覽按鈕可以在當前頁面預(yù)覽,點擊鏈接可以打開原始頁面。 按下右側(cè)的點擊預(yù)覽按鈕可以在當前頁面預(yù)覽,點擊鏈接可以打開原始頁面。 1. 像置身于龍卷風中的特效https://codepen.io/shubniggur... 2. 辦公布局動畫https://codepen.io/karlovidek... 3. 隨著頁面滾動而出現(xiàn)彩色色塊https://codepen.io/...

    godiscoder 評論0 收藏0
  • Codepen 每周精選:不能錯過23個頁面特效(2018-5-14)

    摘要:按下右側(cè)的點擊預(yù)覽按鈕可以在當前頁面預(yù)覽,點擊鏈接可以打開原始頁面。 按下右側(cè)的點擊預(yù)覽按鈕可以在當前頁面預(yù)覽,點擊鏈接可以打開原始頁面。 1. 像置身于龍卷風中的特效https://codepen.io/shubniggur... 2. 辦公布局動畫https://codepen.io/karlovidek... 3. 隨著頁面滾動而出現(xiàn)彩色色塊https://codepen.io/...

    孫吉亮 評論0 收藏0
  • 拖拽3D盒子

    摘要:首先看下怎么做一個靜止的盒子,用到了的。判斷瀏覽器,谷歌滑輪事件當滑輪向上滾動時減小景深當滑輪向下滾動時增加景深滑輪事件好了,到這里這個盒子看起來已經(jīng)很了,你可以直接在上復(fù)制代碼查看效果,我多加了一個入場動畫,喜歡可以順手點個。 ??一直想做一個立體的盒子,前段時間剛好看見掘金上有位朋友發(fā)了篇關(guān)于3d盒子的文章,看了決定自己做一下,再寫一些和盒子互動的操作。這里是要做的效果,應(yīng)該要翻過...

    harryhappy 評論0 收藏0

發(fā)表評論

0條評論

周國輝

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<