fix scroll-reveal-component problems

This commit is contained in:
chuan_wuhao 2022-09-29 15:55:39 +08:00
parent 862f357340
commit 8adf83b469

View File

@ -27,7 +27,6 @@ const RayScrollReveal = defineComponent({
return scsVars return scsVars
}) })
let scrollRevealCore: scrollReveal.ScrollRevealObject
/** /**
* *
@ -44,10 +43,7 @@ const RayScrollReveal = defineComponent({
mobile: true, mobile: true,
} }
scrollRevealCore = ScrollReveal().reveal( ScrollReveal().reveal(el, Object.assign(defaultOptions, props.options))
el,
Object.assign(defaultOptions, props.options),
)
} }
/** /**
@ -55,7 +51,7 @@ const RayScrollReveal = defineComponent({
* `dom` * `dom`
*/ */
const handleScrollRevealSync = async () => { const handleScrollRevealSync = async () => {
const { sync } = scrollRevealCore const { sync } = ScrollReveal()
emit('scrollRevealSync', sync) emit('scrollRevealSync', sync)
} }
@ -88,7 +84,7 @@ export default RayScrollReveal
/** /**
* *
* , , * , ,
* `dom` `RayScrollReveal` * dom RayScrollReveal
* 使 `dom` , `scrollRevealCallback` `dom` * 使 dom , scrollRevealCallback dom
* 注意: 插件始终是以显示屏为窗口作为判断元素是否显示, * 注意: 插件始终是以显示屏为窗口作为判断元素是否显示,
*/ */