求一个简单的点击图片放大缩小的JS代码

发布网友 发布时间:2022-04-23 02:18

我来回答

3个回答

热心网友 时间:2022-04-20 16:43

1、准备好需要用到的图标。 

2、新建html文档。

3、书写hmtl代码。<div id=allbox>    <div id=boxhome>        <img style="WIDTH: 107px; BOTTOM: 5px; HEIGHT: 176px; LEFT: 10px" id=imgSmallLeft class=imgBorder onClick="clearInterval(autoplay);moveD('l');">    。

4、书写并添加js代码。<script src="js/ntes_jslib_1.x.js"></script<script src="js/zzsc.js"></script>。

5、代码整体结构。

6、查看效果。

热心网友 时间:2022-04-20 18:01

你300%实际上计算出来不就是 原始width * 3 ,height* 3吗?转变下思路不就可以了。不一定非得要百分比呀。

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title></title>
    <script type="text/JavaScript">
        window.onload = function(){
              var img = document.getElementById("img");
                img.ondblclick = function(){
                    if(this.width == this.attributes['default_width'].value && this.height == this.attributes['default_height'].value){
                        this.width *=3;
                        this.height *= 3;
                    }else{
                        this.width = this.attributes['default_width'].value ;
                        this.height = this.attributes['default_height'].value;
                    }
                }
        };
    </script>
</head>
<body>
    <img src="../img7.jpg" width="200" height="200" default_width=200 default_height=200 id="img"/>
</body>
</html>

热心网友 时间:2022-04-20 19:36

<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<style type="text/css">
#divid {
position:fixed;
z-index:2000;
left:50%;
top:50%;
transform:translate(-50%,-50%);
}
#imgid {
width:1000px;
height:500px;
}
</style>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.js"></script>
<script >
function myFunction(){
var src=$("#imgip").attr("src")
$("#imgid").attr("src",src)
$("#divid").css("display","block")

}
function myFunc(){
$("#divid").css("display","none")

}
</script>

</head>
<body>
<img id="imgip" onclick="myFunction()" src=""/>

<div style="display:none;" id="divid" >
<img onclick="myFunc()" src="" id="imgid" />
</div>

</body>
</html>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com