MHlife on GitHub

typed.js打印效果

1.我是最后一个打印出来的 效果是 一个一个打印,然后停止 style type="text/css"> /* 如果光标没出现,而是出现在下一行,那么就是盒子是块级标签,必须得转换成行内标签 */ h2 { display: inline; } /* 想让的光标闪动的话,复制下面的代码 */ .typed-cursor{ opacity:

- 阅读全文 -

node.js中的模块

Node.js 中的模块(Moudle)每个JS文件都是一个模块require('./x.js');每个文件来也是一个模块require('./x');要求X目录下有 index.js 文件 或者 package.json 文件每个node_modules 下的 JS文件都是一个模块 require('x.js');每个node_modules下的文件夹也是一模块 require('X');要

- 阅读全文 -

javascript中全方位判断类型

返回这个数据的类型 function isType(obj) { return Object.prototype.toString.call(obj).slice(8, -1); } console.log(isType(date)); var n; // [object Undefined] 不兼容IE8及以下,推荐使用ty

- 阅读全文 -

web前端学习Vue-进阶篇

web前端学习网址进阶篇以vue为基础,以脚手架为核心Vue.jshttps://cn.vuejs.org/Vue.js 全家桶Vue-Cli 脚手架https://cli.vuejs.org/zh/Vue-Routerhttps://router.vuejs.org/zh/Vuexhttps://vuex.vuejs.org/zh/guide/Axioshttps://www.npmjs.com

- 阅读全文 -

js中伪数组转为数组几个方法

Es5的方法来做 var dom = document.getElementsByClassName("demo") var arr = Array.prototype.slice.call(dom) // Es5方法 我们也可以使用Es6中的Array.from方法var dom = document.getElementsByClassName("d

- 阅读全文 -