用css3實現走馬燈的效果

來源:互聯網
上載者:User
這篇文章主要介紹了純css3實現走馬燈效果,主要用到的css3技術有:keyframes、perspective、perspective-origin、transform(translate、rotate)、animation、transform-origin,有需要的小夥伴參考下

純css3實現了一個正六邊形的走馬燈效果,記錄一下css3動畫的學習情況,效果如下:

主要用到的css3技術有:keyframes、perspective、perspective-origin、transform(translate、rotate)、animation、transform-origin,另外加一點平面幾何知識(計算間距、角度啥的),詳細過程如下:

首先設計一下要顯示的布局(俯視圖),途中垂直的線為輔助線,計算位移量時需要用的:

紅色框框為旋轉面(即走馬燈效果的結構最終以該面的中點為旋轉軸旋轉的),六個面也都是基於這個面做的布局,先看紅框下面的三個面,左側的面原本在藍色線處,通過旋轉到達綠色線處,右邊同理,中間的面只需要在Z軸方向移動二分之根號三個邊長的距離即可,所有的面均通過位移和旋轉的方式達到的結構,需要注意的是要保證有圖案的面(本例中使用的是文字,思路一致)要向外,比如上面中間的面,在Z軸向外位移二分之根號三個邊長的距離之後還要以中點為圓心旋轉180°,所有的面同理易得。在此過程中需要牢記的一點技術是:三維座標系中,從座標原點出發,向著座標軸的正方向看去,逆時針旋轉時rotate(X/Y/Z)的值為正數,順時針旋轉時,rotate(X/Y/Z)值為負數。

設定結構:一個3D情境、一個走馬燈的旋轉面和走馬燈的六個面:

<p class="wapper">        <!--情境-->    <p class="rotate">   <!--容器-->        <p class="item itemOne">1</p>  <!--六個面-->        <p class="item itemTwo">2</p>        <p class="item itemThree">3</p>        <p class="item itemFour">4</p>        <p class="item itemFive">5</p>        <p class="item itemSix">6</p>    </p>        </p>

設定3D情境:

.wapper{    -webkit-perspective:800;    /*觀察距離800*/    -webkit-perspective-origin:50% -100%;    /*從正前方上方斜向下觀察*/    width:400px;    height:300px;    margin:100px auto;}

設定旋轉面:

@-webkit-keyframes rotation{      /*動畫過程*/    0%{-webkit-transform:rotateY(0deg);}        100%{-webkit-transform:rotateY(-360deg);}}.rotate{    -webkit-transform-style:preserve-3d;     /*3D變換*/    -webkit-animation: rotation 6s infinite;  /*動畫名稱、時間、迴圈動畫*/    -webkit-animation-timing-function: linear;  /*勻速動畫*/    -webkit-transform-origin:center;      /*沿中間旋轉*/    width:100%;    height:100%;    position:relative;   /*相對定位布局*/}

對六個面除了位置之外的通用樣式做設定:

.item{   -webkit-transform-origin:center;  /*均沿中心旋轉*/   width:198px;   height:300px;   position:absolute;   /*絕對位置在旋轉面上*/   background:none;   text-align:center;   line-height:300px;}

分別設定六個面的位置,以一號為例(上面結構圖中紅框下面左邊綠色線標註的面),所有的數值均需要經過幾何計算得來:

.itemOne{    left:-50px;    -webkit-transform:translateZ(87px) rotateY(-60deg);  /*z軸向外移動87px,沿Y軸方向旋轉-60°*/    background:#f00;}

在滑鼠懸浮在該結構上時動畫停止:

.rotate:hover{    -webkit-animation-play-state:paused;  /*設定動畫狀態*/}

本例子只有在webkit核心的瀏覽器中可以查看效果,如需相容其他現代瀏覽器,需添加 -moz- 等首碼,完整代碼如下:

<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>Animation Test</title>    <style>    *{margin:0;padding:0;}    @-webkit-keyframes rotation{            0%{-webkit-transform:rotateY(0deg);}            100%{-webkit-transform:rotateY(-360deg);}    }    .wapper{        -webkit-perspective:800;        -webkit-perspective-origin:50% -100%;        width:400px;        height:300px;        margin:100px auto;    }    .rotate{        -webkit-transform-style:preserve-3d;        -webkit-animation: rotation 6s infinite;        -webkit-animation-timing-function: linear;        -webkit-transform-origin:center;        width:100%;        height:100%;        position:relative;    }    .item{        -webkit-transform-origin:center;        width:198px;        height:300px;        position:absolute;        background:none;        text-align:center;        line-height:300px;    }    .itemOne{        left:-50px;        -webkit-transform:translateZ(87px) rotateY(-60deg);        background:#f00;    }    .itemTwo{        left:100px;        -webkit-transform:translateZ(173px);        background:#ff0;    }    .itemThree{        left:250px;        -webkit-transform:translateZ(87px) rotateY(60deg);        background:#0ff;            }    .itemFour{        left:250px;        -webkit-transform:translateZ(-87px) rotateY(120deg);            background:#0f0;    }    .itemFive{        left:100px;        -webkit-transform:translateZ(-173px) rotateY(180deg);        background:#0ff;    }    .itemSix{        left:-50px;        -webkit-transform:translateZ(-87px) rotateY(-120deg);        background:#00f;    }    .rotate:hover{        -webkit-animation-play-state:paused;    }    </style></head><body>    <p class="wapper">        <p class="rotate">            <p class="item itemOne">1</p>            <p class="item itemTwo">2</p>            <p class="item itemThree">3</p>            <p class="item itemFour">4</p>            <p class="item itemFive">5</p>            <p class="item itemSix">6</p>        </p>            </p></body></html>

是不是很炫酷的效果呢,小夥伴們,CSS3真是個好東西,你值得擁有。

以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.