2016年1月14日 星期四

Html 網頁閃爍字

CSS設定閃爍:
               A.SaveWarrning {
display:none;
color:red;
    animation-duration: 0.5s;
    animation-name: blink;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    font-weight:bold;
}
@keyframes blink {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

Html:
           <A class="SaveWarrning">修改後請存檔!!!</A> 

Jquery:
           $("A.SaveWarrning").show();

           $("A.SaveWarrning").hide();

沒有留言:

張貼留言