|
- <!DOCTYPE html>
- <!--
- NOTES:
- 1. All tokens are represented by '$' sign in the template.
- 2. You can write your code only wherever mentioned.
- 3. All occurrences of existing tokens will be replaced by their appropriate values.
- 4. Blank lines will be removed automatically.
- 5. Remove unnecessary comments before creating your template.
- -->
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="authoring-tool" content="Adobe_Animate_CC">
- <title>locking animated size</title>
- <!-- write your code here -->
- <style>
- body {
- overflow:hidden;
- }
- #animation_container {
- position:absolute;
- margin:auto;
- left:-100%;right:-100%;
- top:-100%;bottom:-100%;
- }
- </style>
- <script src="js/createjs-2015.11.26.min.js"></script>
- <script src="js/lockingsize.js"></script>
- <script src="js/loginbgAn.js"></script>
- <!-- write your code here -->
- </head>
- <body onload="init();" style="margin:0px;">
- <div id="animation_container" style="background-color:rgba(50, 50, 60, 1.00); width:100%; height:100%">
- <canvas id="canvas" width="100%" height="100%" style="position: absolute; display: block; background-color:rgba(50, 50, 60, 1.00);"></canvas>
- <div id="dom_overlay_container" style="pointer-events:none; overflow:hidden; width:100%; height:100%; position: absolute; left: 0px; top: 0px; display: block;">
- </div>
- </div>
-
- </body>
- </html>
|