@widelab-nc/widehue 1.0.24 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +3 -3
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -771,12 +771,12 @@ window.animationTest = function(root) {
|
|
|
771
771
|
videoAnimation.to(video, {
|
|
772
772
|
display: 'block',
|
|
773
773
|
duration: 0,
|
|
774
|
-
}, videoIndex * 0.
|
|
774
|
+
}, videoIndex * 0.55) // Display the video
|
|
775
775
|
.to(video, {
|
|
776
776
|
display: 'none',
|
|
777
777
|
duration: 0,
|
|
778
|
-
delay: 0.
|
|
779
|
-
}, videoIndex * 0.
|
|
778
|
+
delay: 0.55, // Ensure each video is displayed for 0.65 seconds
|
|
779
|
+
}, videoIndex * 0.55); // Ensure each step has a 1-second interval
|
|
780
780
|
});
|
|
781
781
|
|
|
782
782
|
// Set all bgVideos to display: block at the end
|