js的一些趣味:
css部分:
<style>
#container{
width: 80%;
height: 600px;
border: 2px solid red;
background: #000;
margin:20px auto;
cursor: pointer;
position: relative;
left: 0;
top: 0;
overflow: hidden;
}
.fire{
width: 10px;
height:10px;
position: absolute;
bottom: 0;
}
.small-fire{
width: 10px;
height:10px;
position: absolute;
border-radius: 50%;
}
</style>
HTML布局:
<div id="container"></div>
JS部分:
<script>
var ocont = document.querySelector("#container");
ocont.addEventListener("click",function(eve){
var e