我這裏使用的CSS的:用JavaScript觸發CSS動畫?
@keyframes themesappear{
0% {
opacity: 0;
} 100% {
opacity: 1;
}
}
@-webkit-keyframes themesappear{
0% {
opacity: 0;
} 100% {
opacity: 1;
}
}
和JavaScript這裏:
var theme = function() {
document.getElementById('themes').style.animation = "themesMappear 2s forwards;";
document.getElementById('themes').style.WebkitAnimation = "themesappear 2s forwards;";
};
在企圖使id爲 「主題」 淡入和出現在div ...
問題是onclick不起作用,並且透明度也沒有改變,我該如何解決這個問題?你可以看到網站here
我如何使用onlclick:<h1 id = "WM" onclick = "theme()">Change Theme</h1>
你能告訴你如何使用'onclick'? – putvande
@putvande我補充說。 – JakAttk123