摘要:
阅读全文
摘要:
什么是html5 1.H5不是新语言,是第五次修改的版本 2.支持所有主流浏览器(IE9以上支持H5,ie8一下不支持) 3.改变了用户与文档交互方式:多媒体 video audio canvas 4.增加其它的新特性:语义特性,本地存储特性,网页多媒体,二维三维,特效(过度,动画) 5.相对于h4: 1:进步:抛弃了不常用的标记 2.新增:新增标记和属性 3.... 阅读全文
摘要:
div {width: 200px;height: 100px;background-color: pink;/* transition: 要过渡的属性 花费时间 运动曲线 何时开始; */transition: width 0.6s ease 0s, height 0.3s ease-in 1s; 阅读全文
摘要:
1、location.href='http://www.xxx.com/'; 2、location.replace('http://www.xxx.com/'); phpstudy运用在后端 ------服务器:提供服务的机器------ 通过域名访问 给电脑配服务器 静态页面就是数据不变 数据变化:动态网页 服务器作了什么: 1.接受用户请求 2.根据用户请求执行相应业务处... 阅读全文
摘要:
贪吃蛇 对不起,您的浏览器不支持canvas 阅读全文
摘要:
Document ... 阅读全文
摘要:
Document ... 阅读全文
摘要:
forEach遍历 var arr1=[1,3,5,61,8]; arr1.forEach(function(item){ console.log(item); }) // forEach遍历 箭头函数 arr1.forEach(item=>{console.log(item)}); arr1.fo 阅读全文