刀锋铁骑弓箭武将:关于deamweaver的几个问题????

来源:百度文库 编辑:高考问答 时间:2024/04/30 17:37:41
怎么样去掉超连接后的下划线???怎么样让文字上下滚动和左右滚动谢谢!!!!
能把具体的步骤说说吗??你就把我当作一个小学生看待,其实我也什么也不会。

怎么样去掉超连接后的下划线
这个要用样式表定义样式,把a:visited设置成无下划线,如下:
a:visited {text-decoration: none;}

怎么样让文字上下滚动和左右滚动

1.左右滚动文字

代码:
<marquee direction= "left" width="776" height="25" scrollamount="6" scrolldelay="200" onMouseOver="this.stop()" onMouseOut="this.start()">内容 </marquee>
direction方向,左或右,width 文字运动的长度,height高度 scrollamount和scrolldelay是文字运动的速度,scrollamount数值越大,速度快.scrolldelay相反,数值越小,速度快. onMouseOver="this.stop()" 鼠标经过时,停止. onMouseOut="this.start()"鼠标离开时,运动.

2上下滚动文字
将方向改为 up或down,width数值改小一点,height数值改大一点.
内容要分段,即:
要得到最新更新信息<br>
请订阅本站更新邮件<br>
列表。<br>

整个代码为:
<marquee direction=up width=110 id=cool scrollamount=2 scrolldelay=80 height=50 onMouseOver=cool.stop() onMouseOut=cool.start()>
要得到最新更新信息<br>
请订阅本站更新邮件<br>
列表。<br>
</marquee>