-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Adobe Animate publish profile and template to distribution …
…archive
- Loading branch information
Showing
7 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!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="$VERSION"> | ||
<title>$TITLE</title> | ||
<!-- write your code here --> | ||
<script src="webcg-adobe-animate-adapter.umd.js"></script> | ||
$CENTER_STYLE | ||
$CREATEJS_LIBRARY_SCRIPTS | ||
$ANIMATE_CC_SCRIPTS | ||
$SCRIPT_START | ||
var canvas, stage, exportRoot, anim_container, dom_overlay_container, fnStartAnimation; | ||
function init() { | ||
canvas = document.getElementById("$CANVAS_ID"); | ||
anim_container = document.getElementById("$ANIM_CONTAINER_ID"); | ||
dom_overlay_container = document.getElementById("dom_overlay_container"); | ||
$CREATE_LOADER | ||
$LOAD_MANIFEST | ||
$PRELOAD_ASSETS | ||
} | ||
$HANDLE_FILE_LOAD_START | ||
$HANDLE_FILE_LOAD_BODY | ||
$HANDLE_FILE_LOAD_END | ||
$HANDLE_COMPLETE_START | ||
//This function is always called, irrespective of the content. You can use the variable "stage" after it is created in token create_stage. | ||
$CREATE_STAGE | ||
//Registers the "tick" event listener. | ||
$START_ANIMATION | ||
//Code to support hidpi screens and responsive scaling. | ||
$RESP_HIDPI | ||
$HANDLE_COMPLETE_END | ||
$PLAYSOUND | ||
$SCRIPT_END | ||
<!-- write your code here --> | ||
</head> | ||
<body onload="init();" style="margin:0px;"> | ||
<div id="$ANIM_CONTAINER_ID" style="background-color:$BG; width:$WTpx; height:$HTpx"> | ||
<canvas id="$CANVAS_ID" width="$WT" height="$HT" style="position: absolute; display: $CANVAS_DISP; background-color:$BG;"></canvas> | ||
<div id="dom_overlay_container" style="pointer-events:none; overflow:hidden; width:$WTpx; height:$HTpx; position: absolute; left: 0px; top: 0px; display: $CANVAS_DISP;"> | ||
</div> | ||
</div> | ||
$PRELOADER_DIV | ||
</body> | ||
</html> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters