HTML text样式大全

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<script language="javascript">
function fun()
{
window.document.getElementById('h1').style.left= Math.random()*800+"px";
window.document.getElementById('h1').style.top= Math.random()*800+"px";
setTimeout("fun()",500);
}
</script>
</head>
<body onload="fun()">
<div  id="h1" style="position:absolute;width:150px; height:102px; z-index:1">
<a href="
http://www.baidu.com">
<img src="1.gif" width="234" height="218" border="0"></a>
</div>
</body>

 

你可能感兴趣的:(JavaScript)