//创建球对象 | |
var boll = { | |
color:'red', | |
w:100, | |
h:100, | |
left:100, | |
top:50, | |
draw:function(){ | |
var div = document.createElement('div'); | |
div.className = 'boll'; | |
div.style.width = boll.w + 'px'; | |
div.style.height = boll.h + 'px'; | |
div.style.left = boll.left + 'px'; | |
div.style.top = boll.top + 'px'; | |
div.style.background = boll.color; | |
wrap.appendChild(div); | |
} | |
} | |
boll.draw(); |