@netless/slide 1.4.25 → 1.4.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/README.md CHANGED
@@ -4,6 +4,9 @@
4
4
 
5
5
  ## changelog
6
6
 
7
+ ### 1.4.26 (2025-5-15)
8
+ * 添加 `enableAutoForward` 参数, 设置为 `true` 时, 可以根据 PPT 内设置的自动换片间隔自动播放, 默认为 `false`
9
+
7
10
  ### 1.4.25 (2025-5-12)
8
11
  * 添加 "三维旋转" 效果
9
12
 
package/lib/Slide.d.ts CHANGED
@@ -266,6 +266,7 @@ export interface ISlideConfig {
266
266
  enableTracking?: boolean;
267
267
  enableWebAudio?: boolean;
268
268
  skipActionWhenFrozen?: boolean;
269
+ enableAutoForward?: boolean;
269
270
  }
270
271
  interface MediaState {
271
272
  type: "pause" | "play";