网页中添加多媒体元素

来源:互联网 发布:螃蟹淘宝网店源码下载 编辑:程序博客网 时间:2024/06/04 23:29

<marquee> 是制作滚动字幕的命令,那么
怎么样可以确定滚动的时间呢scrollamount;
怎么确定滚动的方式呢behavior;
怎么确定滚动的次数呢loop;
设置字幕与周围元素的间距hspace vspace;
鼠标悬停效果onmouseout —-onmouseout=stop()
/onmouseout=start()

    <html>    <head>    <title>t添加滚动字幕</title>    </head>    <body>    <marquee><font size="+3" color="red">welcom use html to set website</font>    </marquee>    </body>    </html>接下来`<bgcolor>`用来确定网页某一部分的背景颜色    <html>    <head>    <title>t添加滚动字幕其他</title>    </head>    <body>    <marquee><font size="+3" color="red">welcom use html to set website</font>    </marquee><br><br>    <marquee bgcolor="#0000dd"><font size=+2 color=red></font></marquee><br><br>    </body>    </html><height><width>设定背景的宽度和高度
    <html><head><title>t添加滚动字幕其他</title></head><body><marquee><font size="+3" color="red">welcom use html to set website</font></marquee><br><br><marquee bgcolor="#0000dd"><font size=+2 color=red></font></marquee><br><br><marquee height="80" width="50%" bgcolor="#dddd00><font size="+2" color="red">this is a changed blackground</font></body></html>

direction 用来确定方向 

<html>    <head>    <title>t添加滚动字幕其他</title>    </head>    <body>    <marquee><font size="+3" color="red">welcom use html to set website</font>    </marquee><br><br>    <marquee bgcolor="#0000dd"><font size=+2 color=red></font></marquee><br><br>    <marquee height="80" width="50%" bgcolor="#dddd00><font size="+2" color="red">tthis is a changed blackground</font>    <marquee direction="up">Do you know whant happened in my heart</marquee>    </body>    </html>
0 0
原创粉丝点击