Flash和滚动字幕

flash
1、插入flash
    1)<object>
            <embed src="路径"></embed>
        </object>
    2)<param value="路径">
    3)<iframe src="路径"></iframe>
        1)默认有滚动条
            scrolling:yes/no    规定是否在iframe中显示滚动条
        2)默认有边框
            frameborder:0/1      规定是否显示边框
 
2、将背景色设置为透明
    wmode="transparent"
 
滚动字幕
<marquee behavior="scroll" direction="up" scrollamount="value" height=value width=value>内容</marquee>
behavior  行为   scroll  滚动   alternate  晃动
direction  方向   up从下向上   down  从上向下   left  从右往左  right  从左往右
scrollamount  滚动速度
height/width   上下/左右的滚动范围
原文地址:https://www.cnblogs.com/tis100204/p/10297106.html