Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@losting/timeline
Advanced tools
canvas 时间轴,支持缩放、拖拽、无限滚动
npm install @losting/timeline
<div id="root" style="width: 100%;height: 70px;">
<canvas id="timeline"></canvas>
</div>
import Timeline from '@losting/timeline';
// new Timeline(canvasId, options)
const timeline = new Timeline('timeline', {
fill: true,
});
timeline.draw({
currentTime: 1651829532,
areas: [{
startTime: 1651827433,
endTime: 1651829413,
// bgColor: '#00AEEC55'
},{
startTime: 1651829533,
endTime: 1651832533,
// bgColor: '#00AEEC55'
}],
});
timeline.on('timeUpdate', (time) => {
console.log('selected time:', time);
})
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="./dist/timeline.iife.js"></script>
</head>
<body>
<div id="root" style="width: 100%;height: 70px;">
<canvas id="timeline"></canvas>
</div>
<script>
const timeline = new window['$timeline']('timeline', {
fill: true,
});
// ....
</script>
</body>
</html>
属性 | 类型 | 默认值 | 说明 |
---|---|---|---|
width | number | 无 | canvas宽度 |
height | number | 无 | canvas高度 |
fill | boolean | false | 是否适应父容器宽高,若为false则需要手动设定canvas宽高 |
bgColor | string | rgba(0,0,0,0.5) | canvas背景色 |
textColor | string | #ffffff | 文字颜色 |
scaleColor | string | #ffffff | 刻度颜色 |
scaleSpacing | number | 7 | 刻度间距 |
areaBgColor | string | #ffffff55 | 阴影区域背景颜色 |
pointColor | string | #00aeec | 当前时间指针颜色 |
pointWidth | number | 3 | 当前时间指针宽度 |
fps | number | 60 | 帧数 |
zoom | number | 2 | 初始缩放值,minZoom ~ maxZoom 之间(包含)的正整数 |
maxZoom | number | 9 | 最大缩放限制,1~9之间的正整数 |
minZoom | number | 1 | 最小缩放限制,1~9之间的正整数 |
方法名 | 说明 |
---|---|
draw | 生成时间轴,返回值:无 |
on | 事件监听。 |
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
currentTime | number | 否 | 当前所在时间,默认为当前时间 |
areas | array | 否 | 阴影区域 |
timeline.on(eventName, (value) => {
// ...
});
eventName | value |
---|---|
timeUpdate | currentTime |
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
startTime | number | 是 | 阴影区域开始时间 |
endTime | number | 是 | 阴影区域结束时间点 |
bgColor | string | 否 | 背景颜色, 默认值:#ffffff55 |
FAQs
Canvas timeline supports zooming, dragging, infinite scrolling, and custom control levels.
The npm package @losting/timeline receives a total of 40 weekly downloads. As such, @losting/timeline popularity was classified as not popular.
We found that @losting/timeline demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.