zhitong.yu
2024-03-21 6beef2ce75f15a8b3d4394b83da62071c686eb3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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
  });
</script>
</html>