如何用javascript实现一张小图片在另一张大图片上的移动?
发布网友
发布时间:2022-05-06 07:49
我来回答
共2个回答
热心网友
时间:2022-04-21 00:04
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#big {
display: block;
position: absolute;
height: 500px;
width: 500px;
background-color: #003399;
}
#big #small {
background-color: #0066FF;
height: 50px;
width: 50px;
position: absolute;
right:0;
bottom:0;
}
-->
</style>
</head>
<body>
<div id="big">
<div id="small"></div>
</div>
<script type="text/javascript">
document.getElementById("big").onclick = move;
function move(){
document.getElementById("small").style.left = event.clientX;
document.getElementById("small").style.top = event.clientY;//控制Y坐标,删除,小块只能水平移动
}
</script>
</body>
</html>
只能给出思路....更具体的要看实际应用了
热心网友
时间:2022-04-21 01:22
不知道你具体想做什么 不过你可以在大图上先放三个小图都在div上面 然后显示一个隐藏两个 点击后隐藏第一个 显示其他的div就ok了 然后你再加上渐变效果就行了