网页设计问题,急!
- 提问者网友:像風在裏
- 2021-07-20 08:50
- 五星知识达人网友:话散在刀尖上
- 2021-07-20 09:57
它这个是用flash做的,可以不用flash实现
想学的话我可以教你
- 1楼网友:人類模型
- 2021-07-20 12:13
终于让我找到一个可以免费制作FLASH的软件啦。好高兴哦!很简单的,大家也不妨试试看,做个简单的FLASH送给爱人或朋友,很 不错滴啦!
http://f1.9618.cn/flash/player/player.html?stype=1&flashName=20091014/20091014101027.swf
- 2楼网友:煞尾
- 2021-07-20 10:54
貌似 http://www.pixdream.com.cn/这个大开了就有背景音乐在播放,知识他还在缓冲!至于你鼠标移到图片上,图片变大:其实可以加一个title.js,再在图片上加一个title="图片路径"就可以搞定了。 或者设置onmouseover实现图片切换。用下面的代码试试:
<SCRIPT LANGUAGE="JavaScript"> function show(obj) { var img = document.getElementById("showimg"); if(img.src!=obj.src) { img.src=obj.src; } img.style.display=""; img.style.position="absolute"; img.style.top = obj.offsetTop; img.style.left = obj.offsetLeft+obj.width; } function hide() { document.getElementById("showimg").style.display="none"; } </SCRIPT> <img src="1.jpg" onmouseover="show(this)" onmouseout="hide()" width=50 height=50><BR> <img src="2.jpg" onmouseover="show(this)" onmouseout="hide()" width=50 height=50><BR> <img src="3.jpg" onmouseover="show(this)" onmouseout="hide()" width=50 height=50><BR> <img src="4.jpg" onmouseover="show(this)" onmouseout="hide()" width=50 height=50><BR> <img src="" id="showimg" style="display:none" height=200>