@innovastudio/contentbuilder 1.4.49 → 1.4.50
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
CHANGED
@@ -77933,7 +77933,27 @@ class LivePreview {
|
|
77933
77933
|
iframeDocument.body.appendChild(scriptElm);
|
77934
77934
|
}
|
77935
77935
|
}
|
77936
|
+
}); // Play Anim
|
77937
|
+
|
77938
|
+
elms = wrapper.querySelectorAll('.is-animated');
|
77939
|
+
elms.forEach(elm => {
|
77940
|
+
elm.style.opacity = '0';
|
77941
|
+
elm.style.transition = 'none';
|
77936
77942
|
});
|
77943
|
+
setTimeout(() => {
|
77944
|
+
let elms = wrapper.querySelectorAll('.is-animated');
|
77945
|
+
elms.forEach(elm => {
|
77946
|
+
elm.classList.remove('is-inview');
|
77947
|
+
});
|
77948
|
+
setTimeout(() => {
|
77949
|
+
elms = wrapper.querySelectorAll('.is-animated');
|
77950
|
+
elms.forEach(elm => {
|
77951
|
+
elm.style.opacity = '';
|
77952
|
+
elm.style.transition = '';
|
77953
|
+
elm.classList.add('is-inview');
|
77954
|
+
});
|
77955
|
+
}, 30);
|
77956
|
+
}, 200);
|
77937
77957
|
}
|
77938
77958
|
}
|
77939
77959
|
} else {
|