用css3實現波紋特效和H5實現動態波浪效果

來源:互聯網
上載者:User
這篇文章主要介紹了css3實現波紋特效、H5實現動態波浪效果,非常不錯,具有參考借鑒價值,需要的朋友可以參考下

css3實現動態波紋特效,由於css3裡面有過渡和動畫效果,現在利用css3實現動態波浪效果就很簡單了,直接使用transform來實現就ok, 使得translateX 產生位移就可以不斷實現迴圈動態效果,這樣就比傳統的flash來實現更為簡單。而且對頁面也比較友好的。

比如實現以下的背景波紋特效:

html5結構:

<p class="wrap__uc-hdinfo">    <p class="inner flexbox">        <p class="uimg">            <span class="img"><img src="images/uimg/uimg-def.jpg" /></span>        </p>        <a class="info flex1" href="#">            <label class="name">露娜</label>            <label class="type mt-10">普通會員</label>            <label class="tel ff-ar">18621535487</label>        </a>        <i class="arr iconfont icon-youjiantou c-fff fs-24"></i>        <a class="lktel" href="tel:15888886666"><i class="iconfont icon-dianhua1"></i></a>    </p>    <!--css3實現波紋-->    <p class="wrap__uc-waves">        <i class="wave w1"></i>        <i class="wave w2"></i>    </p></p>

css3代碼:

/*css3波紋*/.wrap__uc-waves{overflow:hidden;height:1rem;width:100%;position:absolute;bottom:0;}.wrap__uc-waves .wave{width:15rem; transform-origin:center bottom; position:absolute;left:0;bottom:0;}.wrap__uc-waves .w1{background:url(../images/icon__uc-hd-waves01.png) no-repeat;background-size:cover; height:.5rem; animation:anim_wave 5s linear infinite;}.wrap__uc-waves .w2{background:url(../images/icon__uc-hd-waves02.png) no-repeat;background-size:cover; height:.7rem; animation:anim_wave 6s linear infinite;}@keyframes anim_wave {    0% {        transform: translateX(0) translateZ(0) scaleY(1)    }    50% {        transform: translateX(-25%) translateZ(0) scaleY(0.55)    }    100% {        transform: translateX(-50%) translateZ(0) scaleY(1)    }}

以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注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.