赞
踩
- <!DOCTYPE html>
- <html>
- <head>
- <style>
- #new-year-animation {
- position: relative;
- width: 600px;
- height: 400px;
- background-color: black;
- color: white;
- font-size: 40px;
- text-align: center;
- padding-top: 200px;
- }
- #new-year-animation span {
- position: absolute;
- animation: fly 2s linear infinite;
- }
- @keyframes fly {
- 0% { top: 0px; left: 0px; }
- 50% { top: -200px; left: 400px; }
- 100% { top: 0px; left: 800px; }
- }
- </style>
- </head>
- <body>
- <div id="new-year-animation">
- <span>H</span>
- <span>A</span>
- <span>P</span>
- <span>P</span>
- <span>Y</span>
- <span> </span>
- <span>N</span>
- <span>E</span>
- <span>W</span>
- <span> </span>
- <span>Y</span>
- <span>E</span>
- <span>A</span>
- <span>R</span>
- <span>!</span>
- </div>
-
- <script>
- function showAnimation() {
- let spans = document.querySelectorAll('#new-year-animation span');
- spans.forEach((span, index) => {
- setTimeout(() => {
- span.style.display = 'inline';
- }, index * 100);
- });
- }
- showAnimation();
- </script>
- </body>
- </html>
-
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。