You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/animations.md
+21-1Lines changed: 21 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,27 @@ Slidev has [@vueuse/motion](https://motion.vueuse.org/) built-in. You can use th
166
166
</div>
167
167
```
168
168
169
-
The text `Slidev` will move from `-80px` to its original position on revealing.
169
+
The text `Slidev` will move from `-80px` to its original position on initialization.
170
+
171
+
> Note: Slidev preloads the next slide for performance, which means the animations might start before you navigate to the page. To get it works properly, you can disable the preloading for the particular slide
172
+
>
173
+
> ```md
174
+
> ---
175
+
> preload: false
176
+
> ---
177
+
> ```
178
+
>
179
+
> Or control the element life-cycle with `v-if` to have fine-grained controls
0 commit comments