- 博客(4)
- 收藏
- 关注
原创 原生js通过类实现拖拽
class Drag{ constructor(){ } isDrag=false; //拖拽开关 boxX=null; //鼠标点击时盒子初始坐标 boxY=null; mouseX=null; //鼠标点击市鼠标初始坐标 mouseY=null; X=null; //鼠标在盒子上的偏移值 Y=null; mouseDown(e,dom){ // 拖拽开始 this.isDrag=true;
2020-06-03 09:47:49 189
原创 原生js实现链表(简单)
通过构造函数实现//创建节点类 function Node(element,color) { this.element=element; this.color=color; this.next=null; } // 创建链表类 function Link_list() { this.head=new ...
2019-06-06 14:33:55 680
原创 javascript数据类型与typeof结果
JavaScript数据类型(七种):(值类型)基本类型:number string boolean undefined null symbol引用类型:objecttypeof 对应结果(七种):number numberstring stringboolean booleanundefined undefinedfunction...
2019-06-06 14:28:20 246
原创 如何使用css3实现图片倒影效果
如何使用css3实现图片倒影效果依赖的css3属性:box-reflect对应语法:语法简介:倒影实例依赖的css3属性:box-reflect对应语法:box-reflect : none | <direction> <offset>? <mask-box-image>?<direction> : above | below | left ...
2019-06-05 14:43:05 1243
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人