发布网友 发布时间: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>热心网友 时间: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>