2018年5月8日
摘要: 1.函数声明和函数表达式 2.命名函数的赋值表达式 阅读全文
posted @ 2018-05-08 17:20 lily_w 阅读(114) 评论(0) 推荐(0) 编辑
  2018年5月4日
摘要: 优先级 通过上面的介绍,我们就可以得出一个代码执行的优先级: 同步代码 > process.nextTick > Promise(微任务)> setTimeout(fn)、setInterval(fn)(宏任务)> setImmediate(宏任务)> setTimeout(fn, time)、se 阅读全文
posted @ 2018-05-04 11:21 lily_w 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1、html结构 2.对应的css样式 我是在看到laixiangran的博客时看到的感觉还不错,保留下来,一边以后可以拿来直接使用。 重要用到的background-clip,box-shadow,outline属性,不了解的同学可以查看W3School查看 阅读全文
posted @ 2018-05-04 10:16 lily_w 阅读(14351) 评论(0) 推荐(0) 编辑
  2018年4月28日
摘要: htm: data: js: 阅读全文
posted @ 2018-04-28 17:02 lily_w 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 1.底部画线,从左边开始,右边结束 html: <div class="silde-txt">底部划线</div> css: <style>.silde-txt{ width: 200px; color: red; position: relative; text-align: center; ma 阅读全文
posted @ 2018-04-28 14:32 lily_w 阅读(552) 评论(0) 推荐(0) 编辑
  2017年12月21日
摘要: jquery中的Promise,也就是我们所知道的Deferred对象。 举例1: var data=""; function runAsync(){ var def = $.Deferred(); //做一些异步操作 setTimeout(function(){ console.log('执行完成 阅读全文
posted @ 2017-12-21 13:16 lily_w 阅读(263) 评论(0) 推荐(0) 编辑