1 Star 0 Fork 0

王慎之/网页制作练习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0822练习js.html 626 Bytes
一键复制 编辑 原始数据 按行查看 历史
王慎之 提交于 2018-08-22 21:59 . 0822作业
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript" src="lib/jquery/jquery-1.11.1.js" ></script>
<script type="text/javascript">
function max1(){
var image1=document.getElementsByTagName("img")[0];
image1.width=image1.width+5;
}
function min1(){
var image2=document.getElementsByTagName("img")[0];
image2.width=image2.width-5;
}
</script>
</head>
<body>
<img width="300px" src="img/1d.jpg"/>
<br />
<input type="button" onclick="max1()" value="放大" />
<input type="button" onclick="min1()" value="缩小" />
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangshenzhi/web_page_production_exercises.git
git@gitee.com:wangshenzhi/web_page_production_exercises.git
wangshenzhi
web_page_production_exercises
网页制作练习
master

搜索帮助