关于网页制作的几个简单问题

langs 2002-05-22 12:30:36
1 文字从下面向上走,怎么做
2 插入音乐怎么做(HTML代码)
...全文
28 8 打赏 收藏 转发到动态 举报
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
possible_Y 2002-05-27
  • 打赏
  • 举报
回复
1.<marquee onMouseOver=this.stop() onMouseOut=this.start() scrollamount=1 scrolldelay=50 direction=up height=130>
向上滚动……
</marquee>
2.
<Asx Version = "3.0" >
<Param Name = "Name" Value = "播放列表1" />
<Param Name = "AllowShuffle" Value = "yes" />
<Entry>
<Title > 唉声叹气</Title>
<Abstract > online.nju.edu.cn</Abstract>
<Copyright > 音乐在线[online.nju.edu.cn]</Copyright>
<Author > 郑秀文</Author>
<Ref href = "folder.mp3"/>
</Entry>
<Entry>
<Title > 爱有什么用</Title>
<Abstract > online.nju.edu.cn</Abstract>

<Copyright > 音乐在线[online.nju.edu.cn]</Copyright>

<Author > 郑秀文</Author>

<Ref href = "msg.mp3"/>
</Entry>
</Asx>


把上面的文件存成一个*.asx文件。[AA.asx]
里面的各个部分可以看懂的。

然后
<embed src="AA.asx" loop=true autostart=true name=bgss width="0" height=0>
cutesun 2002-05-27
  • 打赏
  • 举报
回复
呵呵 这些东西我的网站正好都有 就在首页上 声音还是专业主持人的呢
http://go7.163.com/guanying/
red_wolf 2002-05-27
  • 打赏
  • 举报
回复
<script language=JavaScript>

var index = 5
text = new Array(9);
text[0] ='本网站刚刚开通,很多栏目尚在建设中'
text[1] =''
text[2] =''
text[3] =''
text[4] =''


document.write ("<marquee scrollamount='1' scrolldelay='60' direction= 'up' width='158' id=xiaoqing height='190' onmouseover=xiaoqing.stop() onmouseout=xiaoqing.start()>");
for (i=0;i<index;i++){

document.write (text[i] + "<br>");
}
document.write ("</marquee>")
</script>
WUKAI001 2002-05-27
  • 打赏
  • 举报
回复
文字从下往上滚动的实现:

<marquee direction=up height=175 onMouseOut=this.start() onMouseOver=this.stop() scrollamount=1 scrolldelay=20>
<p style="line-height=20px"><font color="#800000" size="2">这样就可以实现文字的滚动效果,同时鼠标停在上面时滚动停止......</font></marquee>

调节参数可以改变布局。
fierceagle 2002-05-27
  • 打赏
  • 举报
回复
用flash实现很简单.
langs 2002-05-22
  • 打赏
  • 举报
回复
http://www.hermes.com.cn/newtech/20011218t.htm#4
上面的那个怎么不行
看哪有问题
langs 2002-05-22
  • 打赏
  • 举报
回复
还有支持什么格式的音乐
谢谢
<script language"javascript">
  var currentpos,timer;
  function initialize()
  {
  timer=setInterval("scrollwindow()",10);
  }
  function sc(){
  clearInterval(timer);
  }
  function scrollwindow()
  {
  currentpos=document.body.scrollTop;
  window.scroll(0,++currentpos);
  if (currentpos != document.body.scrollTop)
  sc();
  }
  document.onmousedown=sc
  document.ondblclick=initialize
  </script>
zytp 2002-05-22
  • 打赏
  • 举报
回复
midi mp3

10,606

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 其他
社区管理员
  • 其他
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧