上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 39 下一页
摘要: input::placeholder { font-size: 12px; font-family: Arial; letter-spacing: 5px; color: red !important; text-align: center; } input::placeholder { font- 阅读全文
posted @ 2019-09-06 15:45 武卡卡 阅读(15364) 评论(0) 推荐(3) 编辑
摘要: canvas = document.getElementById('canvas1'); var context = canvas.getContext('2d');context.fillStyle = 'rgba(255, 255, 255, 0)' var context = canvas.g 阅读全文
posted @ 2019-09-03 17:12 武卡卡 阅读(6630) 评论(0) 推荐(0) 编辑
摘要: document.documentElement.scrollTop||document.body.scrollTop 阅读全文
posted @ 2019-09-03 13:46 武卡卡 阅读(5513) 评论(0) 推荐(1) 编辑
摘要: arr = [1,2,3,4,5] console.log(arr[arr.length-1]) //输出的为5,即最后一个 阅读全文
posted @ 2019-09-03 13:17 武卡卡 阅读(1685) 评论(0) 推荐(1) 编辑
摘要: display: flex; justify-content: center; /* 水平居中 */ align-items: center; /* 垂直居中 */ 阅读全文
posted @ 2019-08-30 14:53 武卡卡 阅读(161) 评论(0) 推荐(0) 编辑
摘要: $("input").keydown(function(event){ if (event.keyCode == 13) { /* 提交或者别的操作 */ } }); $("input").keydown(function(event){ if (event.keyCode == 13) { /* 阅读全文
posted @ 2019-08-30 11:32 武卡卡 阅读(1641) 评论(0) 推荐(0) 编辑
摘要: var str = "11:222"; /* * 截取 “ :”之前和之后的值 */document.write(str.split(':')[0]) //输出11document.write(str.split(':')[1]) //输出222 阅读全文
posted @ 2019-08-29 14:15 武卡卡 阅读(7123) 评论(0) 推荐(0) 编辑
摘要: /** * 分发事件到事件流中。 * this.node.dispatchEvent(new cc.Event.EventCustom("name",是否向上传递)) * true:向上传递,传递到父节点。 * false:向下传递 */ var e = new cc.Event.EventCust 阅读全文
posted @ 2019-08-18 12:31 武卡卡 阅读(1285) 评论(0) 推荐(0) 编辑
摘要: 1, 打开windows命令行 2, cd 到项目的文件夹 3, 执行 cocos run -p web 阅读全文
posted @ 2019-08-04 11:35 武卡卡 阅读(474) 评论(0) 推荐(0) 编辑
摘要: cocos new HelloJS -l js -p com.neworigin.HelloJS -d D:\0-Game\cocosJS-project 阅读全文
posted @ 2019-08-03 14:47 武卡卡 阅读(427) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 39 下一页