Select to view content in your preferred language

Is it possible to remove the Play, Forward and Backward buttons from a TimeSlider

358
2
Jump to solution
01-19-2024 02:35 PM
Josh-R
by
New Contributor III

Is it possible to remove the Play, Forward and Backward buttons from a TimeSlider? This was asked over 10 years ago, but the codebase has changed a lot since then. Thanks!

Tags (1)
1 Solution

Accepted Solutions
JoelBennett
MVP Regular Contributor

Yes, this can be done with CSS:

div.esri-time-slider__animation,
div.esri-time-slider__previous,
div.esri-time-slider__next {
	display: none;
}

View solution in original post

2 Replies
JoelBennett
MVP Regular Contributor

Yes, this can be done with CSS:

div.esri-time-slider__animation,
div.esri-time-slider__previous,
div.esri-time-slider__next {
	display: none;
}
Josh-R
by
New Contributor III

This worked. Thanks!

0 Kudos