-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathMarquee.tsx
46 lines (45 loc) · 1.21 KB
/
Marquee.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import React from 'react'
import { css, Arimo, WaitFor } from '../lib'
export function Marquee() {
let text =
'welcome to my GitHub profile, thanks for visiting! click on each image to see the source code that generates it.'
const textOptions = {
anchor: 'left middle',
fontSize: 36,
}
const metrics = Arimo.getMetrics(text, textOptions)
const totalWidth = metrics.width + 720
const scrollSpeedPixelsPerSecond = 128
const totalTimeToScroll = totalWidth / scrollSpeedPixelsPerSecond
const style = css`
#text {
animation: ${totalTimeToScroll}s text linear infinite;
animation-delay: 2s;
animation-fill-mode: both;
}
@keyframes text {
from {
transform: translate(854px, 0);
}
to {
transform: translate(${-metrics.width}px, 0);
}
}
`
return (
<svg
width="854px"
height="72px"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
>
<style type="text/css">{style}</style>
<g id="text">
<g transform="translate(0 36)">
<path id="hello" d={Arimo.getD(text, textOptions)} fill="currentColor" />
</g>
</g>
</svg>
)
}