1. 程式人生 > >css3實現小圖示向下引導小箭頭動態效果

css3實現小圖示向下引導小箭頭動態效果

css3實現小圖示向下引導小箭頭動態效果
網上轉的 ,記錄下來,方便下次用到

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            @-webkit-keyframes rightan
                {

                from
                {
                    bottom
: 0%
; opacity: 0; }
to { bottom: 5%; opacity: 1; } } .rightan { -webkit-animation: rightan 1s infinite; -webkit-animation-fill-mode
: both
; }
</style> </head> <body> <div class="rightan"> <img src="img/huadong.png"> </div> </div> </html>

圖片自己下載

這裡寫圖片描述