1. Multimedia application in HTML_falsh animation (insert Flash animation into web pages)
1. The first method of inserting Flash animation: Use <embed>...</embed> to mark the animation automatically reduces
property:
src=url(Flash path)
width=pixel/percentage (flash width)
height=pixel/percentage (falsh height)
wmode
window makes flash its own rectangular window playback
opaque makes flash hidden page behind it
transparent to make the background of flash transparent
<embed src=../../../ Material Library/Flash Animation Material/Text 1.swf width=600></embed>
<embed src=../../../ Material Library/Flash animation material/picture commercial home advertising.swf wmode=window></embed>
2. The second method of inserting Flash animation: Use the <object>...</object> tag to insert flash animation, and you can also automatically generate the code <object> through the DW software, insert--multimedia--select file
2. Multimedia application in HTML_mp3 (insert music into web pages)
1. Use <embed>...</embed>
Property value description
utostart true/false Automatic/non-automatic playback
loop The number of times a digital music loop is (unlimited if not added)
Its predecessor is <bgsound src=URL loop=Time> can be used as background music
Copy the code