利用vue+d3写一个动态时间
时间: 2024-01-15 13:03:31 浏览: 85
Vue2 D3.js demo
5星 · 资源好评率100%
Vue和D3是两个不同的库,Vue主要用于构建用户界面,而D3是用于数据可视化的库。所以,我们可以利用Vue来构建一个界面,然后使用D3来实现动态时间的效果。
以下是一个简单的示例代码:
```
<template>
<div ref="clock"></div>
</template>
<script>
import * as d3 from 'd3'
export default {
mounted() {
const svg = d3.select(this.$refs.clock)
.append('svg')
.attr('width', 200)
.attr('height', 200)
const circle = svg.append('circle')
.attr('cx', 100)
.attr('cy', 100)
.attr('r', 50)
.attr('fill', 'none')
.attr('stroke', '#000000')
const hourHand = svg.append('line')
.attr('x1', 100)
.attr('y1', 100)
.attr('x2', 100)
.attr('y2', 50)
.attr('stroke', '#000000')
.attr('stroke-width', 5)
const minuteHand = svg.append('line')
.attr('x1', 100)
.attr('y1', 100)
.attr('x2', 100)
.attr('y2', 30)
.attr('stroke', '#000000')
.attr('stroke-width', 3)
const secondHand = svg.append('line')
.attr('x1', 100)
.attr('y1', 100)
.attr('x2', 100)
.attr('y2', 20)
.attr('stroke', '#ff0000')
.attr('stroke-width', 1)
const updateClock = () => {
const now = new Date()
const hour = now.getHours()
const minute = now.getMinutes()
const second = now.getSeconds()
const hourAngle = (hour % 12 + minute / 60) * 30
const minuteAngle = minute * 6
const secondAngle = second * 6
hourHand.attr('transform', `rotate(${hourAngle}, 100, 100)`)
minuteHand.attr('transform', `rotate(${minuteAngle}, 100, 100)`)
secondHand.attr('transform', `rotate(${secondAngle}, 100, 100)`)
setTimeout(updateClock, 1000)
}
updateClock()
}
}
</script>
<style scoped>
svg {
border: 1px solid #000000;
}
</style>
```
在这个示例中,我们使用D3来创建一个SVG画布,并添加一个圆形和三个线条,分别代表时针、分针和秒针。然后,在`updateClock`函数中,我们使用`Date`对象来获取当前时间,并计算出每个针的角度,然后使用D3的`transform`方法来旋转每个针的位置。最后,我们使用`setTimeout`函数来每秒钟更新一次时间。
在Vue中,我们可以将这段代码放在一个组件中,并在`mounted`钩子函数中调用`updateClock`函数来启动动态时间的效果。
阅读全文