1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box {
- width: 200px;
- height: 200px;
- background: #00f;
- transition: width 1s linear;
- }
- .box1 {
- width: 200px;
- height: 200px;
- background: #f00;
- transition: width 2s linear;
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- <button id="btn1">放大</button>
- <button id="btn2">缩小</button>
- <div class="box1"></div>
- <script src="../js/3.小例子.js"></script>
- </body>
- </html>
|