I’m disappointed because everything overlaps, even though the start and end dates are quite different. On the demo version, the problem seems to be similar:
Thanks for this alternative! It works great. I tried using it by adding the following format to $:/plugins/oeyoews/timeline/widget.js with hours and minutes: “YYYY-0MM-0DDT0hh:0mm”:
// Try to parse ISO datetime format (YYYY-MM-DDThh:mm)
const isoDatetimeMatch = dateString.match(/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2})$/);
if (isoDatetimeMatch) {
return {
year: isoDatetimeMatch[1],
month: isoDatetimeMatch[2],
day: isoDatetimeMatch[3],
hours: isoDatetimeMatch[4],
minutes: isoDatetimeMatch[5]
};
}
Overall, it works well, but there is a major performance issue. As indicated in the documentation, it suggests no more than 20 slides, but it has a lot of trouble working when there are several hundred.
To limit the load, I removed the slide display in CSS, but there is still a lot of latency: