1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- @keyframes rotate {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- .inner {
- transform-origin: center center;
- width: 15rem;
- height: 15rem;
- }
- .inner img {
- width: 15rem;
- }
- #small-img {
- width: 16rem;
- position: absolute;
- top: 0;
- left: 0;
- background: rgba(0, 0, 0, transparent);
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="inner">
- <img src="1.jpg" alt="" id="big-img">
- <!-- <img src="2.jpg" alt="" id="small-img"> -->
- </div>
- </div>
- <!-- <button id="start">开始</button>
- <button id="stop">停止</button> -->
- <script>
- window.onload = function () {
- setTimeout(() => {
- var inner = document.querySelector(".inner");
- inner.style.animation = "rotate 5s linear infinite";
- setTimeout(function () {
- inner.style.animation = "";
- }, 5000);
- setTimeout(()=>{
- window.location.href= "page2.html"
- },3000)
- }, 2000)
- }
- </script>
- </body>
- </html>
|