广州数控车床入门视频:HTML代码 去那里找呢? 要好玩的 `呵呵

来源:百度文库 编辑:杭州交通信息网 时间:2024/04/29 16:20:47
比如 :

鼠标移动到 文字上出来 说明文字

等等

好玩的都可以呵呵!

既然QQ空间支持 HTML 那就不客气了哈哈

他是说找源程序,不是看源程序,去http://www.flash8.net很多源程序的

<a style="text-decoration: none" href="http://www.bidejob.com/game/">flash小游戏</a>

看访问次数的就不是html代码所能够解决得了。需要动用一些小程序。你可以参考www.itlearner.com的访问统计系统。

你只要打开网页,点击工具栏上的查看-源文件就可以看见HTML代码了.

你找网页特效就可以了

搜网页特效,有好多

例如:

<SCRIPT language=JavaScript>
if (!document.layers&&!document.all)
event="test"
function showtip2(current,e,text){

if (document.all&&document.readyState=="complete"){
document.all.tooltip2.innerHTML='<marquee style="border:1px solid blue">'+text+'</marquee>'
document.all.tooltip2.style.pixelLeft=event.clientX+document.body.scrollLeft+10
document.all.tooltip2.style.pixelTop=event.clientY+document.body.scrollTop+10
document.all.tooltip2.style.visibility="visible"
}

else if (document.layers){
document.tooltip2.document.nstip.document.write('<b>'+text+'</b>')
document.tooltip2.document.nstip.document.close()
document.tooltip2.document.nstip.left=0
currentscroll=setInterval("scrolltip()",100)
document.tooltip2.left=e.pageX+10
document.tooltip2.top=e.pageY+10
document.tooltip2.visibility="show"
}
}
function hidetip2(){
if (document.all)
document.all.tooltip2.style.visibility="hidden"
else if (document.layers){
clearInterval(currentscroll)
document.tooltip2.visibility="hidden"
}
}

function scrolltip(){
if (document.tooltip2.document.nstip.left>=-document.tooltip2.document.nstip.document.width)
document.tooltip2.document.nstip.left-=5
else
document.tooltip2.document.nstip.left=150
}
</SCRIPT>

<DIV id=tooltip2
style="background-color: white; clip: rect(0px 150px 50px 0px); height: 1px; left: 2px; position: absolute; top: 0px; visibility: visible; width: 100px; z-index: 2"><LAYER
name="nstip" width="500px" bgColor="white"></LAYER></DIV>

<a href="http://lovehy.126.com/" onmouseout=hidetip2() onmouseover="showtip2(this,event,'说明文字')" target="_blank">Froser示范</a>