1
我有一個谷歌網站。我想嵌入一個SWF文件,但我無法做到這一點。我可以顯示圖片和視頻,但不能顯示SWF文件。有沒有解決這個問題的方法?嵌入瑞士法郎在谷歌網站
我有一個谷歌網站。我想嵌入一個SWF文件,但我無法做到這一點。我可以顯示圖片和視頻,但不能顯示SWF文件。有沒有解決這個問題的方法?嵌入瑞士法郎在谷歌網站
可以在HTML編輯模式
<embed src="//example.com/filename.swf"
width="540" height="540" pluginspage="http://www.macromedia
.com/go/getflashplayer"></embed>
使用embed
選項卡中保存後,它會自動生成一個小工具包的SWF文件。您使用https協議來確保健壯性,否則可能無法顯示內容。
你可以創建自己的小工具http://example.com/gadget.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="Demo"
author="You!"
author_email="[email protected]"
width="558"
height="558">
<Require feature="flash"/>
</ModulePrefs>
<Content type="html">
<![CDATA[
<div id="flash-container"
style="text-align:center;height:558;border:0;padding:0;margin:0">
Loading...
</div>
<script type="text/javascript">
function showFlash() {
gadgets.flash.embedFlash(
'//example.com/demo.swf', 'flash-container', 6
);
}
gadgets.util.registerOnLoadHandler(showFlash);
</script>
]]>
</Content>
</Module>
,那麼你可以通過菜單,通過URL嵌入的小工具。