代码拉取完成,页面将自动刷新
同步操作将从 losting/timeline 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!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">
<meta name="author" content="https://github.com/thelostword" />
<title>timeline</title>
</head>
<body>
<canvas id="Timeline"></canvas>
<div>
<p>current time:</p>
<strong id="TimeValue"></strong>
</div>
<script type="module">
import TimeLine, { format } from './dist/timeline.es.js';
const timeline = new TimeLine('#Timeline', {
fill: false,
zoom: 4,
});
timeline.draw({
currentTime: 1651827817000,
areas: [{
startTime: 1651827433000,
endTime: 1651829413000,
bgColor: '#f897aa'
},{
startTime: 1651829533000,
endTime: 1651832533000,
}],
});
const TimeValue = document.querySelector('#TimeValue');
TimeValue.textContent = format(timeline.getCurrentTime(), 'YYYY-MM-DD HH:mm:ss');
timeline.on('dragged', (timestamp) => {
TimeValue.textContent = format(timestamp, 'YYYY-MM-DD HH:mm:ss');
});
console.log(timeline);
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。