mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-14 08:34:25 +03:00
clock: add background to moon
This commit is contained in:
parent
0920b83f2d
commit
a823913b8c
@ -72,10 +72,19 @@ const Moon = ({ angle, ...props }) => {
|
|||||||
<rect x="-50" y="-50" height="200" width="200" fill="black" />
|
<rect x="-50" y="-50" height="200" width="200" fill="black" />
|
||||||
<path d={dFromPhase(phase)} fill="white"/>
|
<path d={dFromPhase(phase)} fill="white"/>
|
||||||
</mask>
|
</mask>
|
||||||
|
<circle
|
||||||
|
id="moonbg"
|
||||||
|
cx={CX + (RADIUS - 12) * Math.cos(degToRad(angle))}
|
||||||
|
cy={CY + (RADIUS - 12) * Math.sin(degToRad(angle))}
|
||||||
|
fill="rgba(255,255,255,0.6)"
|
||||||
|
r={CELESTIAL_BODY_SIZE / 2}
|
||||||
|
{...props}
|
||||||
|
></circle>
|
||||||
<use
|
<use
|
||||||
width={CELESTIAL_BODY_SIZE}
|
width={CELESTIAL_BODY_SIZE}
|
||||||
height={CELESTIAL_BODY_SIZE}
|
height={CELESTIAL_BODY_SIZE}
|
||||||
xlinkHref="#Moon-symbol"
|
xlinkHref="#Moon-symbol"
|
||||||
|
id="moon"
|
||||||
x={cx}
|
x={cx}
|
||||||
y={cy}
|
y={cy}
|
||||||
transform={`rotate(${angle} ${cx + (CELESTIAL_BODY_SIZE / 2)} ${cy + (CELESTIAL_BODY_SIZE / 2)})`}
|
transform={`rotate(${angle} ${cx + (CELESTIAL_BODY_SIZE / 2)} ${cy + (CELESTIAL_BODY_SIZE / 2)})`}
|
||||||
|
Loading…
Reference in New Issue
Block a user