問題:
您想要在使用者捲動時觸發 CSS動畫頁面但沒有使用jQuery.
解決方案:
在 JavaScript 中觸發 CSS 動畫的一種方法是使用 classList 屬性。操作方法如下:
使用動畫屬性來建立一個 CSS 類別。
例如:
.animated { animation: my-animation 2s forwards; }
新增事件監聽器document.
新增事件監聽器document.
document.addEventListener('scroll', (event) => { // Get the element you want to animate. const element = document.getElementById('my-element'); // Add the 'animated' class to the element. element.classList.add('animated'); });
動畫完成時移除 'animated' 類別。
element.addEventListener('animationend', (event) => { // Remove the 'animated' class from the element. element.classList.remove('animated'); });
範例:
<!DOCTYPE html> <html> <head> <style> .animated { animation: my-animation 2s forwards; } @keyframes my-animation { 0% { opacity: 0; } 100% { opacity: 1; } } </style> </head> <body> <div>
以上是如何在不使用 jQuery 的情況下使用 JavaScript 在滾動上觸發 CSS 動畫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!