javascript 特效集合

本文介绍了一种通过JavaScript实现的鼠标移动时图片放大的前端特效。包括代码实现和具体步骤,适合前端开发者学习。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

http://www.cnblogs.com/cloudgamer/

上面是一个前端特效博客

鼠标移动上去图片放大效果

<!DOCTYPE html PUBLIC "-//W 3C //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 id="Head1" runat="server">
    <title>JavaScript Test</title>
</head>

<script type="text/javascript">
//*******
//
鼠标移入显示大图片
//*******
function yiru(t){    
    var ei = document.getElementById("big_image");
    ei.style.display = "block";
 ei.innerHTML = '<img src="' + t.src + '" width="180px" height="180px" />';
 ei.style.top  =document.body.scrollTop+window.event.clientY+10+"px";
 ei.style.left =window.event.clientX+10+"px";
}

//*******
//
鼠标移出隐藏大图片
//*******
function yichu(){
    var ei = document.getElementById("big_image");
    ei.innerHTML = "";
 ei.style.display = "none";
}

</script>

<body>
    <form id="form1" runat="server">
    <div id="big_image" style="position: absolute; display: none; z-index: 2; border: 0px solid #f 4f 4f 4;">
    </div>
    <div>
        <table>
            <tr>
                <td>
                    <img border="0" src="images/tupian.gif" width="100" height="80" onmousemove="yiru(this);" onmouseout="yichu(this);" />
                </td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值