HTML5是一種擁有強大功能的標記語言,它能夠實現各種動態效果,使網頁設計更加生動有趣。下面我們來看一個實現動態效果的例子:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>HTML5實現動態效果代碼</title> <style> .box { width: 200px; height: 200px; background-color: #f00; position: relative; animation: move 2s linear infinite alternate; } @keyframes move { 0% { left: 0; top: 0; } 100% { left: 200px; top: 200px; } } </style> </head> <body> <div class="box"></div> </body> </html>
上面的代碼實現了一個簡單的動畫效果,通過animation屬性控制動畫持續時間和重復方式,通過@keyframes定義動畫關鍵幀,從而使一個紅色的 div 實現左上角到右下角的平移動畫效果。