Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 4 Jahren
12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <!--
  3. NOTES:
  4. 1. All tokens are represented by '$' sign in the template.
  5. 2. You can write your code only wherever mentioned.
  6. 3. All occurrences of existing tokens will be replaced by their appropriate values.
  7. 4. Blank lines will be removed automatically.
  8. 5. Remove unnecessary comments before creating your template.
  9. -->
  10. <html>
  11. <head>
  12. <meta charset="UTF-8">
  13. <meta name="authoring-tool" content="Adobe_Animate_CC">
  14. <title>locking animated size</title>
  15. <!-- write your code here -->
  16. <style>
  17. body {
  18. overflow:hidden;
  19. }
  20. #animation_container {
  21. position:absolute;
  22. margin:auto;
  23. left:-100%;right:-100%;
  24. top:-100%;bottom:-100%;
  25. }
  26. </style>
  27. <script src="js/createjs-2015.11.26.min.js"></script>
  28. <script src="js/lockingsize.js"></script>
  29. <script src="js/loginbgAn.js"></script>
  30. <!-- write your code here -->
  31. </head>
  32. <body onload="init();" style="margin:0px;">
  33. <div id="animation_container" style="background-color:rgba(50, 50, 60, 1.00); width:100%; height:100%">
  34. <canvas id="canvas" width="100%" height="100%" style="position: absolute; display: block; background-color:rgba(50, 50, 60, 1.00);"></canvas>
  35. <div id="dom_overlay_container" style="pointer-events:none; overflow:hidden; width:100%; height:100%; position: absolute; left: 0px; top: 0px; display: block;">
  36. </div>
  37. </div>
  38. </body>
  39. </html>