1. ホーム
  2. Web制作
  3. HTML/Xhtml

htmlマルチメディアアプリケーションのウェブページにフラッシュアニメーションと音楽を挿入する。

2022-01-15 20:34:10

I. HTMLマルチメディアアプリケーション_falshアニメーション(ウェブページにflashアニメーションを挿入する)

1. Flashアニメーション挿入の最初の方法: <embed> を使用... </embed> マークアップアニメーションは自動的に縮小されます。

属性です。
src=url(フラッシュパス)
width=pixels/percentage (フラッシュ幅)
height=pixels/percentage (ファルスの高さ)
wmode
window 再生するためにフラッシュ自身の長方形のウィンドウを作る
opaqueはflashがページ上に隠れるようにします。
透明は、フラッシュの背景を透明にします

<embed src="。/... /... /素材ライブラリ/Flashアニメーション素材/text1.swf" width="600"></embed>

<embed src="。/... /... /materials/flash-animation-footage/pictures-commercial-home-advertising.swf" wmode="window"></embed>

2. フラッシュアニメーションの挿入の第二の方法:使用&lt;オブジェクト&gt;... </オブジェクト&gt;タグは、フラッシュアニメーションを挿入するには、また、自動的にコード&lt;オブジェクト&gt; DWを通じて、ソフトウェアを、挿入生成できます-マルチメディア-ファイルを選択してください。

第二に、HTML_mp3におけるマルチメディアのアプリケーション(Webページに音楽を挿入する)。

1. <embed> を使用する... </embed>
属性の値 説明
utostart true/false 自動/非自動再生
loop number 音楽がループする回数(not addedは無限大)。

以前は <bgsound src"URL" loop="number"> として知られており、BGMとして使用することができます。

コピーコード
コードは以下の通りです。

<embed src="... /... /... /materials/蔡淳佳 - 等一个晴天.mp3" autostart="true" loop="4"></embed>
<bgsound src=". /... /... /bgsound/deng - Hourglass of Memories.mp3"/>

2. MP3音楽を挿入するには、 <object>... </object> タグを使用します。
属性の値 説明
名前 src (パス) 音楽パス
utoplay(true/false) 自動再生するかどうか。


コピーコード
コードは以下の通りです。

<object data=". /... /... /materials library/蔡淳佳 - 等一个晴天.mp3">
<param name="src" value="... /... /... /materials library/蔡淳佳 - 等一个晴天.mp3"/>
<param name="autoplay" value="flase" />
</object>

III. アクティブにできるテキストを設定する

<marquee> テキストを移動する</marquee> (制限があります。一部のブラウザではうまくサポートされていません。)

属性です。
direction="スクロールの方向"(左(デフォルト),右(ライト),上(アップ),下(ダウン))
behavior="スクロールモード"(スクロール(ぐるぐる回る)、スライド(1回だけ回る)、オルタネート(行ったり来たり))
loop="スクロールのループ数"デフォルトのループは1以上(無限)です。
scrolldelay="delay" (1歩進む、1歩止める)
scrollmount="speed"(値が大きいほど速くなります。)
bgcolor="背景色"
width="width"
height="height"
hspace="pixels" ブラウザの境界線から左右の間隔を指定します。
vspace="ピクセル" ブラウザの境界線から上下の辺の距離
onmouseover="this.stop()":マウスを乗せるとスクロールを止める。
onmouseout="this.start()"スクロールを続けるためにマウスを離す


コピーコード
コードは以下の通りです。

<body>
<marquee direction="left" behavior="scroll" scrollamount="3" bgcolor="#FFFFCC" width=" 440" height="250" hspace="100" vspace="100" onmouseover="this.stop()" onmouseout=" this.start()">
<ul type="square">
<li>Vice Minister of Public Security Li Dongsheng was investigated and the central anti-corruption has reached the top of the Political and Legal Committee</li>
<li>Reuters: Belgian company helped write code for China's Beidou system</li>
<li>Self-media changes: Entertainment industry broker model could be a try</li>
<li>State Council think tank criticizes bank profiteering: puppies make money even sitting on the president's seat</li>
<li>Tibetan Party Secretary: 98% satisfaction with Tibetan people's security in 2013</li>
<li>Inventory of famous "public mistresses": all had affairs with a number of corrupt officials (Figure)</li>
<li>Foreign media say China's civil servants have become a rice bowl appendage life has no meaning</li>
<li>Liu Qiangdong slims down to a lightning bolt, returns from study tour, misses Li</li>
<li>North Korea warns of strike on South Korea, top ROK, US military inspect western front</li>
<li>Cultural differences from Martin Luther King's misguided ad</li>
<li>Chongqing adjusts management system of state-owned enterprises to strictly enforce retirement at age 60</li>
</ul>
</marquee>
</body>