|
@ -1,9 +1,17 @@ |
|
|
<!DOCTYPE html> |
|
|
<!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> |
|
|
<html> |
|
|
<head> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="authoring-tool" content="Adobe_Animate_CC"> |
|
|
<meta name="authoring-tool" content="Adobe_Animate_CC"> |
|
|
<title>鸟妈妈回家</title> |
|
|
<title>source-code</title> |
|
|
<!-- write your code here --> |
|
|
<!-- write your code here --> |
|
|
<style> |
|
|
<style> |
|
|
#animation_container, #_preload_div_ { |
|
|
#animation_container, #_preload_div_ { |
|
@ -14,17 +22,16 @@ |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |
|
|
<script src="libs/1.0.0/createjs.min.js"></script> |
|
|
<script src="libs/1.0.0/createjs.min.js"></script> |
|
|
<script src="bird.js"></script> |
|
|
<script src="source-code.js"></script> |
|
|
<script src="main.js"></script> |
|
|
<script src="main.js"></script> |
|
|
|
|
|
|
|
|
<!-- write your code here --> |
|
|
<!-- write your code here --> |
|
|
</head> |
|
|
</head> |
|
|
<body onload="init();" style="margin: 0px;"> |
|
|
<body onload="init();" style="margin:0px;"> |
|
|
<div id="animation_container" style="background-color:rgba(255, 255, 255, 1.00); width:1280px; height:720px"> |
|
|
<div id="animation_container" style="background-color:rgba(255, 255, 255, 1.00); width:1280px; height:720px"> |
|
|
<canvas id="canvas" width="1280" height="720" style="position: absolute; display: none; background-color:rgba(255, 255, 255, 1.00);"></canvas> |
|
|
<canvas id="canvas" width="1280" height="720" style="position: absolute; display: none; background-color:rgba(255, 255, 255, 1.00);"></canvas> |
|
|
<div id="dom_overlay_container" style="pointer-events:none; overflow:hidden; width:1280px; height:720px; position: absolute; left: 0px; top: 0px; display: none;"> |
|
|
<div id="dom_overlay_container" style="pointer-events:none; overflow:hidden; width:1280px; height:720px; position: absolute; left: 0px; top: 0px; display: none;"> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div id='_preload_div_' style='position:absolute; top:0; left:0; display: inline-block; height:720px; width: 1280px; text-align: center;'> <span style='display: inline-block; height: 100%; vertical-align: middle;'></span> <img src=images/_preloader.gif style='vertical-align: middle; max-height: 100%'/></div> |
|
|
<div id='_preload_div_' style='position:absolute; top:0; left:0; display: inline-block; height:720px; width: 1280px; text-align: center;'> <span style='display: inline-block; height: 100%; vertical-align: middle;'></span> <img src=images/_preloader.gif style='vertical-align: middle; max-height: 100%'/></div> |
|
|
</body> |
|
|
</body> |
|
|
</html> |
|
|
</html> |
|
|