摘要:
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>Document</title> <style> #map { width: 800px; height: 600px; background-color 阅读全文
摘要:
function getRandom(min,max) { return Math.floor(Math.random()*(max - min + 1)) + min; } function Box(parent,options) { options = options || {}; this.w 阅读全文