diff options
author | 3rd Infantry Division <thirdid@3rd-infantry-division.org> | 2011-04-18 16:29:05 -0400 |
---|---|---|
committer | 3rd Infantry Division <thirdid@3rd-infantry-division.org> | 2011-04-18 16:29:05 -0400 |
commit | ea0080efe5a38a470d4f745ca589e923efc35e5c (patch) | |
tree | c6604647d51c0e81168e7dbaba9f73385edc02ee /modules/cu3er/demo.htm | |
parent | fa1cde8684c1a481dd251398d1c2faa27d147a43 (diff) | |
parent | 0077cb99704fe863cf731fc5cab792af2ede96c2 (diff) | |
download | bayonetcms-ea0080efe5a38a470d4f745ca589e923efc35e5c.tar.gz |
Merge branch 'master' of ssh://3rd-infantry-division.org/~/git/bayonet
Diffstat (limited to 'modules/cu3er/demo.htm')
-rw-r--r-- | modules/cu3er/demo.htm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/modules/cu3er/demo.htm b/modules/cu3er/demo.htm new file mode 100644 index 0000000..8ff0064 --- /dev/null +++ b/modules/cu3er/demo.htm @@ -0,0 +1,35 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>CU3ER - demo!</title> + +<!-- STEP ONE: insert path to SWFObject JavaScript --> +<script type="text/javascript" src="js/swfobject/swfobject.js"></script> + +<!-- STEP TWO: configure SWFObject JavaScript and embed CU3ER slider --> +<script type="text/javascript"> + var flashvars = {}; + flashvars.xml = "config2.xml"; + flashvars.font = "font.swf"; + var attributes = {}; + attributes.wmode = "transparent"; + attributes.id = "slider"; + swfobject.embedSWF("cu3er.swf", "cu3er-container", "640", "320", "9", "expressInstall.swf", flashvars, attributes); +</script> +<style type="text/css"> +<!-- +body { margin: 5% auto; text-align:center;} +#cu3er-container {width:600px; outline:0;} +--> +</style> +</head> +<body> +<!-- STEP THREE: insert CU3ER div container --> +<div id="cu3er-container"> + <a href="http://www.adobe.com/go/getflashplayer"> + <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /> + </a> +</div> +</body> +</html> |