這個效果是用的障眼法,用四條線在同一個方向運動。
代碼如下:
*{ margin: 0; padding: 0; } .big{ margin: 150px auto; background: black; width:258px; height:307px; position: relative; } .big p{ height: 1px; width: 50px; background: rgba(7,241,250,1); position: absolute; } .big p:nth-child(1){ top:5px; left: 5px; } .big p:nth-child(2){ height: 50px; width: 1px; bottom: 5px; right: 5px; } .big p:nth-child(3){ bottom: 5px; right: 5px; } .big p:nth-child(4){ height: 50px; width: 1px; top:5px; left: 5px; } .big p:nth-child(1){ animation:pOne 4s linear infinite; } @keyframes pOne { 0%{ left: 5px; width: 50px; } 10%{ left: 5px; width: 100px; } 40%{ left:153px; width: 100px; } 60%{ left:253px; width: 0px; } 80%{ left:5px; width: 0px; } 100%{ left:5px; width: 50px; } } .big p:nth-child(2){ animation:pTow 4s linear infinite; } @keyframes pTow { 0%{ top: 252px; height: 50px; } 10%{ top: 302px; height: 0px; } 40%{ top: 5px; height: 0px; } 60%{ top: 5px; height: 100px; } 80%{ top: 202px; height: 100px; } 100%{ top: 252px; height: 50px; } } .big p:nth-child(3){ animation:pThree 4s linear infinite; } @keyframes pThree { 0%{ right: 5px; width: 50px; } 10%{ right: 5px; width: 100px; } 40%{ right:153px; width: 100px; } 50%{ right:253px; width: 0px; } 80%{ right:5px; width: 0px; } 100%{ right:5px; width: 50px; } } .big p:nth-child(4){ animation:pFour 4s linear infinite; } @keyframes pFour { 0%{ top: 5px; height: 50px; } 10%{ top: 5px; height: 0px; } 40%{ top: 302px; height: 0px; } 60%{ top: 202px; height: 100px; } 80%{ top: 5px; height: 100px; } 100%{ top: 5px; height: 50px; } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/53942.html
摘要:層疊即表示允許以多種方式來描述樣式,一個元素可以被渲染呈現出多種樣式。可以讓屬性的變化過程持續一段時間,而不是立即生效。比如,將元素的顏色從白色改為黑色,通常這個改變是立即生效的,使用后,將按一個曲線速率變化。 showImg(https://segmentfault.com/img/bVZwyL?w=900&h=385); CSS 的全稱是 Cascading Style Sheet...
摘要:透視即是以現實的視角來看屏幕上的事物,從而展現的效果。旋轉則不再是平面上的旋轉,而是三維坐標系的旋轉,就包括軸,軸,軸旋轉。必須與屬性一同使用,而且只影響轉換元素。可自由轉載引用,但需署名作者且注明文章出處。 showImg(https://segmentfault.com/img/bVzJoZ); 話不多說,先上demo 酷炫css3走馬燈/正方體動畫: https://bupt-...
摘要:透視即是以現實的視角來看屏幕上的事物,從而展現的效果。旋轉則不再是平面上的旋轉,而是三維坐標系的旋轉,就包括軸,軸,軸旋轉。必須與屬性一同使用,而且只影響轉換元素。可自由轉載引用,但需署名作者且注明文章出處。 showImg(https://segmentfault.com/img/bVzJoZ); 話不多說,先上demo 酷炫css3走馬燈/正方體動畫: https://bupt-...
摘要:前言最近寫了一個文字跑馬燈的項目需求,剛開始用寫,能夠完成需求。代碼部分預覽實現文字跑馬燈小結的方式能夠完美的滿足子需求點和自需求點。 前言 最近寫了一個文字跑馬燈的項目需求,剛開始用js寫,能夠完成需求。后面想著換種方式(分別是html和css)來實現同一個需求,以減少性能消耗。 首先,需求分析: 需求點1.判斷文字的長度和容器的長度,如果文字長度大于容器長度則開始滾動,否則不滾動;...
閱讀 3834·2021-09-06 15:00
閱讀 2171·2019-08-30 15:53
閱讀 3277·2019-08-23 16:44
閱讀 944·2019-08-23 15:19
閱讀 1391·2019-08-23 12:27
閱讀 4187·2019-08-23 11:30
閱讀 581·2019-08-23 10:33
閱讀 369·2019-08-22 16:05