<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
position: relative;
}
#top span img{
height: 100px;
width: auto;
margin: 6px;
}
#top{
text-align: center;
}
#bottom{
height: 360px;
text-align: center;
}
#bottom img{
height: 360px;
width: auto;
}
</style>
</head>
<body>
<div id="top">
<script type="text/javascript">
imgArray = ["../week2-前段/img/亚丝娜.jpg","../week2-前段/img/和泉纱雾.jpg","../week2-前段/img/尤娜.jpg"]
function imglist(src){
var topNode = document.getElementById('top')
var spanNode = document.createElement('span')
var imgNode = document.createElement('img')
imgNode.onclick = showImg
imgNode.src = src
spanNode.appendChild(imgNode)
topNode.appendChild(spanNode)
}
function showImg(){
var bottomNode = document.getElementById('bottom')
var imgNode = document.getElementById('img')
imgNode.src = this.src
var imgName = document.getElementById('name')
var name = this.src.split(/\//g)[this.src.split(/\//g).length-1]
console.log(name)
imgName.innerText = name
}
for (index in imgArray){
imglist(imgArray[index])
}
</script>
</div>
<div id="bottom">
<img src="" id="img"/>
<div id="name">
</div>
</div>
</body>
</html>
网友评论