Commit ab694a85 authored by Mac's avatar Mac

1

parent b89bab4b
...@@ -103,6 +103,38 @@ ...@@ -103,6 +103,38 @@
} }
#container>div { #container>div {
left: -5%; left: -5%;
}
#tenImg{
width: 57%;
position: absolute;
left: -26%;
top: -10%;
}
.character{
width: 230px;
height: 305px;
background-image: url('../../images/tenreweu.png');
background-size: 100% 100%;
background-repeat: no-repeat;
position: absolute;
top: 50%;
left: 50%;
margin-left: -115px;
margin-top: -152px;
display: none;
}
.img_show{
width: 200px;
height: 200px;
margin-left: 15px;
margin-top: 10px;
}
.character p{
font-size: 40px;
color: #FFFFFF;
text-align: center;margin-top: 20px;
} }
</style> </style>
<link rel="stylesheet" href="../../css/moveAnimate.min.css"> <link rel="stylesheet" href="../../css/moveAnimate.min.css">
...@@ -126,9 +158,16 @@ ...@@ -126,9 +158,16 @@
<video src="../../video/NHQDQ9.mp4" autoplay="autoplay" loop="loop" muted="muted" id="homeBGvideo"></video> <video src="../../video/NHQDQ9.mp4" autoplay="autoplay" loop="loop" muted="muted" id="homeBGvideo"></video>
</div> </div>
<div class=""> <div class="">
<div id="container"></div> <div id="container">
</div>
</div> </div>
<div class="character animated">
<img src="" alt="" class="img_show">
<p></p>
</div>
</div> </div>
<audio id="audio" autoplay>您的浏览器不支持 audio 元素。</audio> <audio id="audio" autoplay>您的浏览器不支持 audio 元素。</audio>
<script> <script>
...@@ -323,8 +362,37 @@ ...@@ -323,8 +362,37 @@
} }
function render() { function render() {
renderer.render( scene, camera ); renderer.render( scene, camera );
} }
$('#container>div>div').append('<img id="tenImg" src="../../images/tenyear/home_1.png">')
photoshow()
function photoshow() {
let i =0;
let timer = setInterval(function () {
let key = getRandomNumberByRange(0,22) +1;//随即数
$('.character').css('display','block')
$('.character p').html(imgList[i])
$(".img_show").attr("src",'../../images/tenyear/'+imgList[i]+'.jpg');
$(".character").addClass(_in[key])
setTimeout(function () {
$(".character").removeClass(_in[key])
$(".character").addClass(_out[key])
},4000)
setTimeout(function () {
$(".character").removeClass(_out[key])
},5000)
i++
if(i+1 == imgList.length){
clearInterval(timer)
}
},5000)
}
function getRandomNumberByRange(start, end) {
return Math.floor(Math.random() * (end - start) + start)
}
</script> </script>
</body> </body>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment