Skip to content

Instantly share code, notes, and snippets.

@john555
Last active April 26, 2018 08:53
Show Gist options
  • Save john555/b3dae6fc102f6f19324125d3a25b2048 to your computer and use it in GitHub Desktop.
Save john555/b3dae6fc102f6f19324125d3a25b2048 to your computer and use it in GitHub Desktop.
const svg = document.querySelector('svg');
const currentTime = new Date();
svg.style.setProperty('--start-seconds', currentTime.getSeconds());
svg.style.setProperty('--start-minutes', currentTime.getMinutes());
svg.style.setProperty('--start-hours', currentTime.getHours() % 12);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment