淺談css中漸層銜接

來源:互聯網
上載者:User

標籤:animation   jpg   --   如何   tran   log   ram   image   ext   

無論transition還是keyframes,如何讓變化更自然,這是前端應該考慮的問題。

 

這裡,我簡單總結下自己的方法。

 

以實踐為例子。

1。映像漸層

@keyframes looppic{    from{        background:url(http://www.005.tv/uploads/allimg/160727/16-160HG44240938.png);        }    25%{        background:url(http://b.zol-img.com.cn/sjbizhi/images/8/750x530/1422008118352.jpg);        }    75%{        background:url(http://img3.duitang.com/uploads/item/201506/11/20150611192600_Stxhe.png);        }    to{        background:url(http://www.005.tv/uploads/allimg/160727/16-160HG44240938.png);
       } 
}

.keyframeslp{ width:400px; height:200px; -webkit-animation:looppic 6s ease-in infinite; -moz--animation:looppic 6s ease-in infinite; -o--animation:looppic 6s ease-in infinite; -ms--animation:looppic 6s ease-in infinite; }

 

 效果如下:

 

 


2.色彩坡形

代碼如下

@keyframes opa{    from{        opacity:1}        10%{            opacity:0.75}            20%{                opacity:0.5}                30%{                    opacity:0.25;                    content:text content;                    color:#000000;}                    40%{                        opacity:0}                        50%{                            opacity:0.25}                            68%{                                opacity:0.5}                                85%{                                    opacity:0.75}                                    to{                                        opacity:1}                        }.bc{    background:#F10E12;    width:100px;    height:100px;    -webkit-animation:opa 5s ease-in-out infinite;    -o-animation:opa 5s ease-in-out infinite;    -ms-animation:opa 5s ease-in-out infinite;;    -moz-animation:opa 5s ease-in-out infinite;    }

 

效果如下

 

 

 


ok ,相信大家已經看出了其中的技巧:對稱設定

(很奇怪,發布後為什麼沒有效果了呢????)

淺談css中漸層銜接

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.