Hi Matt J., I'm glad to hear that some instructions will come with this component. Can you also please include info related to the trigger?
This code references 'startValue', 'endValue' and 'scrub' but what the heck is that?
scrollTrigger: {
trigger: ".section_layout484",
// Trigger animation when .section_layout484 reaches certain part of the viewport
start: startValue,
// End animation when .section_layout484 reaches certain part of the viewport
end: endValue,
// Smooth transition based on scroll position
scrub: 2
Above that bit of code we see this code referencing the start and end values, but it seems, only for the mobile. (?)
// Define different start and end values for mobile devices
let startValue = isMobile() ? "top 20%" : "top center";
let endValue = isMobile() ? "bottom 40%" : "bottom center";
I've been fiddling with these percentage values for a good half hour and I am not seeing what I want to see. (Is it when the .section_layout484 arrives to 20% away from the top of the screen? Adjusting these values doesn't seem to do anything.)
Some instructions on how to adjust those settings (and what 'scrub' means) would be extremely helpful. Thank you.