4 Star 1 Fork 1

刘娇951128/宏信环科-油库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
点击按钮放大缩小图片.html 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
liu-jiao943076981 提交于 2021-07-07 08:55 . 初始化
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>图片放大</title>
</head>
<style type="text/css">
.main_div{
margin: 20px auto;
text-align: center;
}
.pic_div{
position: relative;
background-color: pink;
border: 1px dotted red;
margin: 10px auto;
width: 800px;
height: 600px;
}
img{
width: 600px;
height: 400px;
}
</style>
<script type="text/javascript">
function bigit(){
var image=document.getElementsByClassName("pic")[0];
image.style.height=image.height*1.1+'px';
image.style.width=image.width*1.1+'px';
}
function littleit(){
var image=document.getElementsByClassName("pic")[0];
image.style.height=image.height/1.1+'px';
image.style.width=image.width/1.1+'px';
}
</script>
<body>
<div style="" class="main_div">
<p>图片在一个区域里放大缩小</p>
<button onclick="bigit()">图片放大</button>&nbsp;&nbsp;<button onclick="littleit()">图片缩小</button>
<div class="pic_div">
<img src="img/map_img.jpg" class="pic">
</div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liu-jiao-951128/hongxin-huanke-oil-depot.git
[email protected]:liu-jiao-951128/hongxin-huanke-oil-depot.git
liu-jiao-951128
hongxin-huanke-oil-depot
宏信环科-油库
master

搜索帮助