即時通訊嘗試使iframe逐漸增長onclick從鏈接(鏈接是中心點)。它將成爲鏈接的大小,然後增長到iframe的大小。會有其他的鏈接,所以他們會有相同的效果。有任何想法嗎?對不起,我是一個新手逐漸增長的iframe onclick
<html>
<head>
<link rel="stylesheet" href="Css/style.css" type="text/css" media="screen" />
<script language="JavaScript" type="text/javascript">
function makeFrame(src) {
ifrm = document.createElement("IFRAME");
ifrm.setAttribute("onmouseout","closeFrame()")
ifrm.setAttribute("src","");
ifrm.style.display = "block";
ifrm.style.width = "640px";
ifrm.style.height = "400px";
ifrm.style.marginLeft = "325px";
ifrm.style.marginTop = "125px";
ifrm.style.position = "absolute";
ifrm.style.top="0px";
ifrm.style.color="red";
ifrm.style.zIndex= "101";
document.body.appendChild(ifrm);
}
function closeFrame(){
ifrm.style.display = "none";
}
</script>
</head>
<body>
<img src="" onclick=makeFrame() height="100px" width="100px" />
</body>
</html>
BTW - 640+「px」; - 使用「640px」非常好。 –
此外,利潤也需要單位。 –
哦好吧非常感謝,現在改變了 – user1646537