1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| <!DOCTYPE html>
| <%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
| <html lang="en">
| <head>
| <meta charset="UTF-8">
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
| <title>跳转后台页面中</title>
| </head>
| <body>
| <div id="Container" style="width: 1000px;height: 900px;margin: auto"></div>
| </body>
| <script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.12.2/lottie.min.js" type="text/javascript"></script>
| <script>
| lottie.loadAnimation({
| container: Container, // the dom element that will contain the animation
| renderer: 'svg',
| loop: true,
| autoplay: true,
| path: '../TiaoZhuan/location.json', // Required
| });
| setTimeout(function() {
| window.location.href = "../HouTai/HouTai.jsp"
| }, 4000);
| </script>
| </html>
|
|