| 123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport"
- content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
- <link rel="stylesheet" href="static/animate/css/animate.min.css">
- <title>UAS集成优软云平台</title>
- <style>
- * {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- margin: 0px;
- padding: 0px;
- }
- .animated {
- -webkit-animation-duration: .3s;
- animation-duration: .3s;
- }
- .animated.hinge {
- -webkit-animation-duration: .6s;
- animation-duration: .6s
- }
- </style>
- </head>
- <body>
- <div id="app"></div>
- <script src='static/libs/jquery/jquery.min.js'></script>
- </body>
- </html>
|