3 Star 3 Fork 54

JoyPoint/StudyStudio

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stacking.html 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
JoyPoint 提交于 2019-10-07 16:08 +08:00 . WebCode v1.0
<!DOCTYPE html>
<!-- stacking.html
Uses stacking.js
Illustrates dynamic stacking of images
-->
<html lang = "en">
<head>
<title> Dynamic stacking of images </title>
<meta charset = "utf-8" />
<script type = "text/javascript" src = "stacking.js" >
</script>
<style type = "text/css">
.plane1 {position: absolute;
top: 0; left: 0; z-index: 0;}
.plane2 {position: absolute;
top: 50px; left: 50px; z-index: 0;}
.plane3 {position: absolute;
top: 100px; left: 100px; z-index: 0;}
</style>
</head>
<body>
<p>
<img class = "plane1" id = "plane1" height = "300"
width = "450" src = "../images/plane1.jpg"
alt = "(Picture of an airplane)"
onclick = "toTop('plane1')" />
<img class = "plane2" id = "plane2" height = "300"
width = "450" src = "../images/plane2.jpg"
alt = "(Picture of an airplane)"
onclick = "toTop('plane2')" />
<img class = "plane3" id = "plane3" height = "300"
width = "450" src = "../images/plane3.jpg"
alt = "(Picture of an airplane)"
onclick = "toTop('plane3')" />
</p>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/JoyPoint/StudyStudio.git
git@gitee.com:JoyPoint/StudyStudio.git
JoyPoint
StudyStudio
StudyStudio
master

搜索帮助