[其他] css js鼠标经过图片放大功能代码

[复制链接]
webmaster 发表于 2019-5-8 13:35:00 | 显示全部楼层 |阅读模式
本帖最后由 webmaster 于 2019-5-8 13:36 编辑

css代码
[CSS] 纯文本查看 复制代码
/***图片放大缩小 - 开始***/
.imgBig{
        position: absolute;
        top: 8px;
        left: 8px;
        z-index: 1000;
        box-shadow: 0 0 10px #888;
        -webkit-box-shadow: 0 0 10px #888;
        -moz-box-shadow: 0 0 10px #888;
        -o-box-shadow: 0 0 10px #888;
}
.imgSmall{
        position: static;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -o-box-shadow: none;
}
/***图片放大缩小 - 结束***/

html代码
[HTML] 纯文本查看 复制代码
<img src="https://www.sssi.cn/template/sssi_2016/images/logo.png" width="20" height="20"/>
请在图片标签中加入onmouseenter="imgBig(this)"和onmouseleave="imgSmall(this)"

js代码
[JavaScript] 纯文本查看 复制代码
<script type="text/javascript">
function imgBig(_this){
    _this.className = "imgBig";
    _this.width = "200";
    _this.height = "200";
}
function imgSmall(_this){
    _this.className = "imgSmall";
    _this.width = "20";
    _this.height = "20";
}
</script>




有花须折直须折,莫待无花空折枝
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 我要加入

本版积分规则

快速回复 返回顶部 返回列表