這篇文章主要介紹了關於css3.0的圖形構成,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
css3.0 的出現給我們帶來了很大的影響,本文主要知識點transform屬性/animate的應用,有興趣的朋友可以參考並學習下實例,希望對你學習圖形構成有所幫助
主要知識點
① transform屬性:
ratate(旋轉度數)
scale(等比例縮放)
skew(x , y);軸和Y軸傾斜的角度,如果第二個參數為空,則預設為0,參數為負表示向相反方向傾斜。
②animate 適用於滑鼠經過產生寬度,高度,left,top等等 範例 transition:1s ease all;所有事件產生動畫!
p { -webkit-animation-name: pulse; -webkit-animation-duration: 2s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: ease-in-out; -webkit-animation-direction: alternate; }@-webkit-keyframes pulse { from { opacity: 0.0; font-size: 100%; } to { opacity: 1.0; font-size: 200%; } }style *{ margin: 0; padding: 0;} body { overflow: hidden; } #clouds{ background:-webkit-linear-gradient(top,#c9dbe9 0%,#fff 100%);/*等价于background:-webkit-gradient(linear,left top,left bottom,from(c9dbe9),to(#fff))*/ background:-moz-linear-gradient(top,#c9dbe9 0%,#fff 100%); background:-o-linear-gradient(top,#c9dbe9 0%,#fff 100%); padding:100px 0px; } .cloud{ width:200px; height:60px; background:#FFF; border-radius:200px; -webkit-border-radius:200px; -moz-border-radius:200px; -o-border-radius:200px; position:relative;} .cloud:after,.cloud:before{ content:''; position:absolute; background:#FFF; width:100px; height:80px; top:-15px; left:10px; border-radius:100px; -webkit-border-radius:100px; -moz-border-radius:100px; -o-border-radius:100px;} .cloud:after{ width:120px; height:120px; top:-55px; left:auto; right:15px;} .x1{ -webkit-animation:moveclouds 25s linear infinite; -moz-animation:moveclouds 25s linear infinite; -o-animation:moveclouds 25s linear infinite;} .x2{ left:200px; transform:scale(0.6); -webkit-transform:scale(0.6); -moz-transform:scale(0.6); -o-transform:scale(0.6); opacity:0.6; animation:moveclouds 25s linear infinite; -webkit-animation:moveclouds 25s linear infinite; -moz-animation:moveclouds 25s linear infinite; -o-animation:moveclouds 25s linear infinite;} .x3{ top:-200px; left:-250px; transform:scale(0.6); -webkit-transform:scale(0.6); -moz-transform:scale(0.6); -o-transform:scale(0.6); opacity:0.6; animation:moveclouds 25s linear infinite; -webkit-animation:moveclouds 25s linear infinite; -moz-animation:moveclouds 25s linear infinite; -o-animation:moveclouds 25s linear infinite;} .x4{ top:200px; left:470px; transform:scale(0.6); -webkit-transform:scale(0.6); -moz-transform:scale(0.6); -o-transform:scale(0.6); opacity:0.6; animation:moveclouds 25s linear infinite; -webkit-animation:moveclouds 25s linear infinite; -moz-animation:moveclouds 25s linear infinite; -o-animation:moveclouds 25s linear infinite;} .x5{ left:470px; top:-250px; transform:scale(0.8); -webkit-transform:scale(0.8); -moz-transform:scale(0.8); -o-transform:scale(0.8); opacity:0.8; animation:moveclouds 25s linear infinite; -webkit-animation:moveclouds 18s linear infinite; -moz-animation:moveclouds 18s linear infinite; -o-animation:moveclouds 18s linear infinite;} @-webkit-keyframes moveclouds{ 0%{margin-left:1000px;} 100%{margin-left:-1000px;} } @-moz-keyframes moveclouds{ 0%{margin-left:1000px;} 100%{margin-left:-1000px;} } @-o-keyframes moveclouds{ 0%{margin-left:1000px;} 100%{margin-left:-1000px;} } html <p id="clouds"> <p class="cloud x1"></p> <p class="cloud x2"></p> <p class="cloud x3"></p> <p class="cloud x4"></p> <p class="cloud x5"></p> </p>
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
#
以上是css3.0的圖形構成的詳細內容。更多資訊請關注PHP中文網其他相關文章!