0
當我將鼠標懸停在某個鏈接上時,我想要對我的身體背景進行動畫處理,有人可以幫我解決這個問題。如何從觸發器中爲y元素觸發css動畫x
我有一個動畫「myfirst」改變背景顏色,
@keyframes myfirst
{
from{background: black;}
to{background: white;}
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
from{ background: black;}
to{background: white;}
}
現在,我已經說得那麼,當我懸停體動畫被觸發。
body:hover{
animation: myfirst 0.01s;
animation-iteration-count:500;
-webkit-animation: myfirst 0.01s;
-webkit-animation-iteration-count:500;
}
我想要一個鏈接觸發改變我的身體背景的動畫。
你不僅可以用CSS ...你不能用css選擇器引用父母 – DaniP
你可以在鏈接上添加一個點擊監聽器,並在js中添加一個包含動畫的類 – andrei
恐怕其他人對。這是一個層疊的樣式表 - 它滾下來,不起來。 – peterchon