Skip to content

Instantly share code, notes, and snippets.

/* Simple timeline visualizer for gsap. I do not support this active. */
/* Usage: new TimelineVisualizer(yourGsapTimelineObject) */
export default class TimelineVisualizer {
constructor(animation) {
this.timelineVisual = document.createElement('div');
this.timelineVisual.className = 'timeline-visual';
this.marker = document.createElement('div');
this.marker.className = 'timeline-marker';
this.animation = animation;