在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問答/HTML5  HTML/ css3鼠標(biāo)移入手機號碼成波浪上下移動?

css3鼠標(biāo)移入手機號碼成波浪上下移動?

這個要怎么實現(xiàn)呢?有沒有JQ插件之類的??!
圖片描述

回答
編輯回答
賤人曾

http://www.htmleaf.com/Demo/2...
不知道是不是你想要的

2018年9月8日 21:32
編輯回答
冷溫柔

@keyframes slow-wave{from{transform:translateY(0)}to{transform:translateY(-10px)}}

     span{display:inline-block;
         animation-duration:3s;
         animation-name:slow-wave;
         animation-iteration-count:infinite;
         animation-direction:alternate
     }
    .slow :nth-child(2n+0){animation-delay:-6s}
    .slow :nth-child(2n+1){animation-delay:-5.76s}
    .slow :nth-child(2n+2){animation-delay:-5.52s}
    .slow :nth-child(2n+3){animation-delay:-5.28s}
    .slow :nth-child(2n+4){animation-delay:-5.04s}
    .slow :nth-child(2n+5){animation-delay:-4.8s}
    .slow :nth-child(2n+6){animation-delay: -4.56s;}
    .slow :nth-child(2n+7){animation-delay: -4.32s;}
    .slow :nth-child(2n+8){animation-delay: -4.08s;}

<div class='slow'>

    <span>1</span>
    <span>3</span>
    <span>7</span>
    <span>8</span>
    <span>5</span>
    <span>1</span>
    <span>8</span>
    <span>8</span>
    <span>1</span>
    <span>2</span>
    <span>3</span>
</div>
2017年9月14日 11:41