We Recommend

HTML: The Definitive Guide HTML: The Definitive Guide
They teach you that learning HTML is like learning any other language and that reading a book of rules can only take you so far. Readers begin writing what may be their first Web page just two pages into the book's second chapter. From there on, they provide a wide range of HTML coding to allow readers to learn from good examples. The book includes a handy "cheat sheet" of HTML codes for quick reference.


Posted By

kyokutyo on 04/16/07


Tagged

xhtml flash


Versions (?)


Who likes this?

3 people have marked this snippet as a favorite

Hirmine
basicmagic
komposition


100%Flash - xhtml1.0


Published in: HTML 


FirefoxはHTML4.0以外のDOCTYPE宣言つけると100%表示のFlashが一部しか表示されないバグがあるそう。
参考サイト
http://uu-uu.com/blog/archives/2006/10/18/flash_100anothe/


  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>sample</title>
  5. <script src="/pathto/AC_RunActiveContent.js" type="text/javascript"></script>
  6. <script src="/pathto/AC_ActiveX.js" type="text/javascript"></script>
  7. <style type="text/css">
  8. <!--
  9. body {
  10.   margin:0;
  11.   padding:0;
  12.   position:absolute;
  13.   width:100%;
  14.   height:100%;
  15. }
  16. -->
  17. </style>
  18.  
  19. </head>
  20. <script type="text/javascript">
  21. AC_FL_RunContent(
  22. 'codebase',
  23. 'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
  24. 'width','100%',
  25. 'height','100%',
  26. 'src','filename',
  27. 'quality','high',
  28. 'pluginspage','http://www.macromedia.com/go/getflashplayer',
  29. 'wmode','opaque',
  30. 'movie','filename'
  31. ); //end AC code
  32. </script>
  33. <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="100%" id="sample" align="middle">
  34. <param name="allowScriptAccess" value="sameDomain" />
  35. <param name="movie" value="sample.swf" />
  36. <param name="quality" value="high" />
  37. <embed src="sample.swf" quality="high" width="100%" height="100%" name="sample" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
  38. </object>
  39. </noscript>
  40. </body>
  41. </html>

Report this snippet 

You need to login to post a comment.