烟花

原生js烟花效果

时间秒杀一切 提交于 2020-03-08 14:51:57
效果图 : 直接上代码: #container { width : 80% ; height : 600px ; border : 2px solid red ; background : #000 ; margin : 20px auto ; cursor : pointer ; position : relative ; overflow : hidden ; } .fire { width : 10px ; height : 10px ; position : absolute ; bottom : 0 ; } .small-fire { width : 10px ; height : 10px ; position : absolute ; border-radius : 50% ; } class Fire { constructor ( pos ) { this . cont = document . getElementById ( "container" ) ; this . x = pos . x ; this . y = pos . y ; } create ( ) { this . f = document . createElement ( "div" ) ; this . f . className = "fire" ; this . f . style