clientWidth是对象看到的宽度(不含边线,即border)scrollWidth是对象实际内容的宽度(若无padding,那就是边框之间距离,如有padding,就是左padding和右padding之间距离)。offsetWidth是指对象自身的宽度,整型,单位像素(含边线,如滚动条的占用 ...
分类:
其他好文 时间:
2018-03-19 20:55:35
阅读次数:
166
总是会被javascript的event对象的clientX,offsetX,screenX,pageX 弄得头晕 先总结下区别: event.clientX、event.clientY 鼠标相对浏览器窗口可视区域的X,Y坐标(窗口坐标),可视区域不包括工具栏和滚动条。IE事件和标准事件都定义了这2 ...
分类:
编程语言 时间:
2018-03-15 00:34:48
阅读次数:
199
rect( x, y, width, height ) 绘制矩形 fillRect( x, y, width, height ) 绘制被填充的矩形 strokeRect( x, y, width, height ) 绘制矩形(无填充) clearRect( x, y, width, height )... ...
1. clientWidth:表示元素的内部宽度,以像素计。该属性包括内边距,但不包括垂直滚动条(如果有)、边框和外边距。(clientWidth = width + padding) 2. offsetWidth:表示元素的内部宽度,以像素计。该属性包括内边距、垂直滚动条(如果有)、边框,但不包括 ...
分类:
其他好文 时间:
2018-02-10 12:56:03
阅读次数:
326
~ 开始使用OpenCV了 ~ 今天尝试的是 矩阵的掩膜操作 内容来自于https://www.bilibili.com/video/av17748771/index_3.html#page=3 设定一个掩膜算子(是这么叫吗。。) 用于提高某张图片的对比度 算法为 I(i,j) = 5 * I(i, ...
分类:
其他好文 时间:
2018-01-25 21:48:13
阅读次数:
307
chrome: e.pageX——相对整个页面的坐标 e.layerX——相对当前坐标系的border左上角开始的坐标 e.offsetX——相对当前坐标系的border左上角开始的坐标 e.clientX——相对可视区域的坐标 e.x——相对可视区域的坐标 ff: e.pageX——相对整个页面的 ...
分类:
其他好文 时间:
2017-12-29 15:33:02
阅读次数:
146
1. 事件 1.1 事件简写 v-on:click="" 简写方式 @click="" 1.2 事件对象$event 包含事件相关信息,如事件源、事件类型、偏移量 target、type、offsetx 1.3 事件冒泡 阻止事件冒泡: a)原生js方式,依赖于事件对象 b)vue方式,不依赖于事件 ...
分类:
其他好文 时间:
2017-12-14 18:00:23
阅读次数:
291
<!DOCTYPE html 封装 构造函数 绘制矩形 html{ overflow:hidden; } //构造函数 function Rect(options){ this.init(options); } Rect.prototype={ init:function(options){ opt ...
分类:
其他好文 时间:
2017-11-21 19:43:57
阅读次数:
93
#pragma once #include "opencv.hpp" #include "StdStrFile.h" void CurvePoly(const std::vector& vPtsInput, std::vector &curvePoint); #include "CurvePoly.... ...
分类:
其他好文 时间:
2017-10-20 16:51:58
阅读次数:
184