摘要: main.js import VueRouter from "vue-router"; import firstcomponent from './components/firstcomponent.vue' import secondcomponent from './components/sec 阅读全文
posted @ 2018-04-17 22:29 与你同行hello 阅读(702) 评论(0) 推荐(0) 编辑
摘要: .container { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 50px 350px 50px; grid-gap: 5px; grid-template-areas: "h h h h 阅读全文
posted @ 2017-12-06 18:18 与你同行hello 阅读(533) 评论(0) 推荐(0) 编辑
摘要: 种专业文献上的“闭包”(closure)定义非常抽象,很难看懂。我的理解是,闭包就是能够读取其他函数内部变量的函数。因为b被a引用,a又被c引用,说以使得f1和f2不被gc回收,得以永久存在 function f1(){ n=999; function f2(){ alert(n); } retur 阅读全文
posted @ 2017-10-10 09:09 与你同行hello 阅读(76) 评论(0) 推荐(0) 编辑
摘要: react符合JSX 语法,可以在js中直接编写html代码,并向指点dom节点添加元素 阅读全文
posted @ 2017-10-10 07:52 与你同行hello 阅读(71) 评论(0) 推荐(0) 编辑
摘要: https://www.baidu.com/s?wd=apmserv 阅读全文
posted @ 2017-10-09 19:58 与你同行hello 阅读(195) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <meta name="keywords" content="关键字"/> <meta name="description" content="蓝航线,碧蓝航线 阅读全文
posted @ 2017-09-29 20:22 与你同行hello 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 返回顶部 $(".htop").click(function() { $("html,body").animate({scrollTop: 0}, 500); }); 获取当前滚动条高度 $(window).scroll(function() { if($(window).scrollTop() > 阅读全文
posted @ 2017-09-29 12:52 与你同行hello 阅读(668) 评论(0) 推荐(0) 编辑
摘要: 左右晃动 .move { position: relative; animation: dese 3s linear infinite alternate; -webkit-animation:dese 3s linear infinite alternate; -moz-animation:des 阅读全文
posted @ 2017-09-29 12:27 与你同行hello 阅读(76) 评论(0) 推荐(0) 编辑
摘要: jquery1.9版本,2.0不支持ie <script src="http://libs.baidu.com/jquery/1.9.1/jquery.min.js"></script> 阅读全文
posted @ 2017-09-29 11:47 与你同行hello 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 1:在服务器角色中,安装iis和ftp 2:配置安全组,把20,21端口加入进去 3:ftp模式修改成主动模式 阅读全文
posted @ 2017-09-28 17:27 与你同行hello 阅读(115) 评论(0) 推荐(0) 编辑