我想要獲得彈跳鼠標動畫以在我的網站上工作。 完全相同的代碼可以在另一個網站上使用,而在我的網站上它只是不會做任何事情。無法獲取CSS3動畫在我的網站上工作
這裏的CSS:
.mouse {
display: block;
margin: 0 auto;
text-align: center;
width: 100%;
font-size: 32px;
color: #fff;
z-index:9999;
position: absolute;
color: #e8e8e8;;
bottom: 240px;
}
.mouse i {
-webkit-animation: todown 1.2s infinite linear;
transition: all 0.3s ease-in-out;
}
的HTML:
<a href="#x11" class="mouse">
<i class="fa fa-angle-double-down icon-option"></i>
</a>
在這個網站上,你可以看到我試圖創建下滾圖標:http://noxxar.com/demo/uralco/
'todown'的關鍵幀在哪裏? – APAD1 2015-03-30 20:00:46
另外,您需要查看用於跨瀏覽器動畫兼容性的正確前綴。 '-moz-','-webkit -'等。 – Adjit 2015-03-30 20:02:22
關鍵幀?我不知道如何設置這些。 我會添加其他人以及它的工作(moz webkit等) – imjp 2015-03-30 20:25:49