码迷,mamicode.com
首页 >  
搜索关键字:arrow    ( 279个结果
带你正确了解ES6
ES6全名是ECMAScript 6,是JavaScript语言的下一代标准。 Babel,可以将ES6代码转为ES5代码,是一个环境执行。 ES6最常用的特性:let, const, class, extends, super, arrow functions, template string, ...
分类:其他好文   时间:2017-07-01 00:01:14    阅读次数:222
箭头函数 -------JavaScript
本文摘要:http://www.liaoxuefeng.com/ ES6标准新增了一种新的函数:Arrow Function(箭头函数)。 为什么叫Arrow Function?因为它的定义用的就是一个箭头: x => x * x 上面的箭头函数相当于: function (x) { return ...
分类:编程语言   时间:2017-06-29 15:16:38    阅读次数:158
e.key && e.which && e.keyCode
官方推荐用e.key来描述状态码,其他两种属性可能会在未来被废弃。 且key,keyCode和which 为只读属性 但是会有浏览器兼容性的问题,可以采用如下代码: let key = ''; if (e.key) { // onKeyDown,对应的e.key = ‘ArrowDown Arrow ...
分类:其他好文   时间:2017-06-27 20:02:17    阅读次数:116
30分钟掌握ES6/ES2015核心内容[上和下], 不错的说
作为有志青年,es6 还是需要掌握的,要看懂还得能写........ 文章作者说的很好, 可以快速过一遍。 es6的常用语法。 mark 作个摘要记录 最常用的ES6特性 let, const, class, extends, super, arrow functions, template str ...
分类:其他好文   时间:2017-06-22 21:49:37    阅读次数:118
design_游戏设计反思故事_渴望认同与自由的英雄
我深深的渴望知道自己是谁,自由的为荣誉而战。在穿上最高级装备,好像变成某个英雄如ghost arrow之前,我,不知道自己是谁。我是出生于苏格兰有着浓密胡须的农民么?我是生而强壮走路缓慢的胖子么?…不 我不知道。 当我换了武器,我的服饰突然变得华丽,行动突然变得轻灵,但我壮硕的肌肉和肩膀却不再有能力 ...
分类:其他好文   时间:2017-06-17 13:01:38    阅读次数:138
Tkinter鼠标样式
具体的样式和操作系统有关 Table Values of the cursor option arrow man based_arrow_down middlebutton based_arrow_up mouse boat pencil bogosity pirate bottom_left_co ...
分类:其他好文   时间:2017-06-03 17:32:55    阅读次数:1006
下拉列表的兼容 css3
#search-car-dealer{ appearance:none; -moz-appearance:none; -webkit-appearance:none; background: url("http://ourjs.github.io/static/2015/arrow.png") no ...
分类:Web程序   时间:2017-06-01 19:38:49    阅读次数:172
列表样式
列表样式: list-style-type none 无标记符号 disc 实心圆 circle 空心圆 square 实心正方形 decimal 数字 list-style-image 如: li{list-style-image:url<image/arrow-right,gif>; list- ...
分类:其他好文   时间:2017-05-30 00:38:26    阅读次数:219
ionic 刷新相关的问题
1、下拉刷新 HTML: <ion-content> <ion-refresher on-refresh ="doRefresh()"> <ion-refresher-content pullingIcon="arrow-dropdown" pullingText="下拉刷新..." refresh ...
分类:其他好文   时间:2017-05-18 15:45:50    阅读次数:324
css 箭头
<style type="text/css"> .arrow { display:inline-block; width: 0px; height: 0px; border: 30px solid transparent; overflow:hidden; }/*向上箭头,只有三个边,不能指定上边框 ...
分类:Web程序   时间:2017-04-25 16:50:56    阅读次数:739
279条   上一页 1 ... 13 14 15 16 17 ... 28 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!