1 Star 0 Fork 0

节奏葳 / spacing-marker

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

HTML 元素间距标记

使用截图

spacing-marker-1.png

spacing-marker-2.png

使用方式

安装

npm i spacing-marker@latest

使用

import SpacingMarker from 'spacing-marker';

// 默认目标元素为document.body
SpacingMarker.start();

// 可设置目标元素及要附加标记的元素
SpacingMarker.start(el, appendToEl);

// 取消使用getBoundingClientRect()方法获取定位,将会使用与目标元素的相对位置作为定位信息
// 当目标元素开启了定位position且有transform属性时使用
SpacingMarker.useBoundingClientRect = false;
// 可指定自定义获取定位的方法。(内置获取定位的方法将失效)
SpacingMarker.getRect = (element: HTMLElement) => {
  const getAttr = (name: string) => Number(element.getAttribute(name));
  const left = getAttr('x');
  const top = getAttr('y');
  const width = getAttr('width');
  const height = getAttr('height');
  return {
    top: top,
    bottom: top + height,
    left: left,
    right: left + width,
    width: width,
    height: height,
  };
};

// 清除所有标记
SpacingMarker.clean();

// 结束标记
SpacingMarker.end();

属性

属性名称 说明 类型 默认值
el 需要元素间距标记的目标元素 HTMLElement document.body
appendToEl 最终要附加标记的元素 HTMLElement document.body
useBoundingClientRect 是否使用 getBoundingClientRect()方法获取定位 Boolean true
getRect 自定义获取定位的方法 Function(element) => {top: number,bottom: number,left: number,right: number,width: number,height: number} -
selectedColor 选中标记颜色 String #2196F3
targetColor hover 标记颜色 String #fe1d5f
zIndex 标记层级 Number 10000
scale 标记缩放比例 Number 1
onRangingChange 间距改变回调函数 Function({ top, bottom, left, right }) -

方法

方法名 说明 参数
start 开启标记 (el?:需要元素间距标记的目标元素, appendToEl?:最终要附加标记的元素)
end 结束标记 (el?:需要结束元素间距标记的目标元素)
clean 清除标记 -
updateScale 更新标记缩放比例 (scale:标记缩放比例)
MIT License Copyright (c) 2022 节奏葳 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

HTML 元素间距标记 展开 收起
TypeScript 等 3 种语言
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/swzj/spacing-marker.git
git@gitee.com:swzj/spacing-marker.git
swzj
spacing-marker
spacing-marker
master

搜索帮助