<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>消防小卫士</title> <link rel="stylesheet" href="css/styles.css"> <script src="js/styles.js"></script> <style type="text/css"> body { margin: auto; width: 750px; height: 1334px; display: flex; } #caseVerte { height: 140px; width: 150px; position: relative; right: 585px; top: 623px; } /*#caseVerte #load { color: #d82900; font-size: 30px; font-weight: bold; text-align: center; }*/ #caseVerte #case { height: 33px; width: 32px; border-radius: 10%; background-color: #68c28e; animation: case 3s; } @keyframes case { 0% { width: 0%; } 100% { width: 463px; animation-play-state: paused; } } </style> <script> window.onload = function() { var caseElement = document.getElementById("case"); caseElement.addEventListener("animationend", function() { window.location.href = "https://www.baidu.com"; }); }; </script> </head> <body> <div class="bj"> <img src="img/1.png" /> </div> <div id="caseVerte"> <div id="case"></div> <!-- <div id="load"> --> <!-- <p>loading ...</p> --> <!-- </div> --> </div> </body> </html> 根据据以上在动画执行到100%时,让动画停在那个位置不要动
时间: 2023-08-14 07:02:17 浏览: 167
去掉<a>的下划线与设置<a>的颜色
根据您提供的代码,您已经在动画执行到100%时让动画停在那个位置不动。在`@keyframes case` 中,将动画的 `100%` 关键帧的 `animation-play-state` 属性设置为 `paused`,这会使动画停止在100%的位置。
您的代码已经实现了与您所希望的相同的效果,当动画执行到100%时,它会停在那个位置不再继续播放。然后,通过JavaScript代码 `window.location.href = "https://www.baidu.com";` 实现了跳转到百度网站。
如果您有其他问题或需要进一步帮助,请随时提问。
阅读全文