H5-M500
沧桑老沈
这个作者很懒,什么都没留下…
展开
-
CSS3-KeyFrames
使一个div元素逐渐移动200像素: [code="HTML5"] 菜鸟教程(runoob.com) div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s infinite; -webkit-animation:mymo...原创 2017-05-08 23:53:04 · 111 阅读 · 0 评论 -
CSS3-KeyFrames-2
使用百分比的方式让方块在规定时间内完成对应动画 菜鸟教程(runoob.com) div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s infinite; -webkit-animation:mymove 133s i...原创 2017-05-08 23:56:36 · 89 阅读 · 0 评论 -
Canvas判断区间点击生效
[code="html"] var rect={x:100,y:100,w:40,h:20};//定义要画的矩形的位置属性 var canvas=document.getElementById('canvas'); var cxt=canvas.getContext('2d'); cxt.fillRect(rect.x,rect.y,rect.w,rect.h);/...原创 2018-07-02 14:49:09 · 695 阅读 · 0 评论