1. 程式人生 > >HTML學習筆記 cs動畫基礎(分列效果可用於做瀑布流) 第十五節 (原創) 參考使用表

HTML學習筆記 cs動畫基礎(分列效果可用於做瀑布流) 第十五節 (原創) 參考使用表

har orm 顏色 無限 動畫 ext top 效果 rotate

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>動畫、分列、過度</title>
    <link rel="stylesheet" href="tzy.css" type="text/css">
</head>
<body>
<div class="div0">動畫效果</div>
<div class="div1">分列效果
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
.div0{
    width: 100px;
    height: 100px;
    background-color: forestgreen;
    position: relative;
    -webkit-animation: anima 5s infinite alternate;
    /*animation 動畫效果 infinite無限   alternate交替*/
    -o-animation: anima 5s infinite alternate;
    animation: anima 5s infinite alternate;
}
@keyframes anima
{ 0%{background: #000; left: 0px; top: 0px;} 25%{background: firebrick; left: 200px; top: 0px;} 50%{background: fuchsia; left: 200px; top: 200px;} 75%{background: cornflowerblue; left: 0px; top: 200px;} 100%{background: #000000; left: 0px; top: 0px;} } @-webkit-keyframes anima { 0%{background
: #000; left: 0px; top: 0px;} 25%{background: firebrick; left: 200px; top: 0px;} 50%{background: fuchsia; left: 200px; top: 200px;} 75%{background: cornflowerblue; left: 0px; top: 200px;} 100%{background: #000000; left: 0px; top: 0px;} } .div1{ -webkit-column-count: 4; column-count: 4; /*分列數量*/ column-gap: 30px; /*列距離*/ column-rule:5px outset #FF0000; /*列顏色*/ -webkit-column-rule:5px outset #FF0000; } .div2{ width: 100px; height: 100px; background-color: deepskyblue; -webkit-transition: width 2s, height 2s, -webkit-transform 2s; transition: width 2s, height 2s, transform 2s; transition-delay:2s; /*過度延時時間*/ } .div2:hover{ width: 200px; height: 200px; transform:rotate(360deg); -webkit-transform:rotate(360deg); }


    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
    我是一直小小鳥,飛呀飛呀飛不高,掉下去摔死怎麽辦?怎麽辦?
</div>
<div class="div2">過度效果展示</div>

</body>
</html>

HTML學習筆記 cs動畫基礎(分列效果可用於做瀑布流) 第十五節 (原創) 參考使用表