滑动行为 负责 Telegram 迷你应用程序轻扫行为的💠组件。 检查支持要检查当前 Telegram 小应用程序版本是否支持轻扫行为,需要使用 isSupported 方法: Variable : - import { swipeBehavior } from '@telegram-apps/sdk';
" O5 L0 I e& g - - V s/ o* e$ ]
- swipeBehavior.isSupported(); // boolean
复制代码Functions : - import { isSwipeBehaviorSupported } from '@telegram-apps/sdk';+ A* m! _* h2 A# h
- t1 v" W/ [* S) I
- isSwipeBehaviorSupported(); // boolean
复制代码 安装在使用该组件之前,有必要将其安装到正确配置的属性中。 为此,请使用 mount 方法。 它将更新 isMounted 信号属性。 Variable : - import { swipeBehavior } from '@telegram-apps/sdk';
. [$ e9 z; E' ~8 i) @2 s2 S - 6 P( a1 Z$ a) |1 P6 l# r
- swipeBehavior.mount();+ P: C. c& {4 h6 ^* H
- swipeBehavior.isMounted(); // true
复制代码Functions : - import {
+ w4 n# h5 {/ s- P: x, X( Z - mountSwipeBehavior,. ]1 A. P. \9 z9 h8 K
- isSwipeBehaviorMounted,+ A; E. b" m( W* D, x
- } from '@telegram-apps/sdk';" S% g7 D, P5 _( @, [/ K9 }
- & {* y- ~% g- a% J( L( l
- mountSwipeBehavior(); 8 z2 G/ R- k% `+ R
- isSwipeBehaviorMounted(); // true
复制代码要卸载,请使用 unmount 方法: Variable : - swipeBehavior.unmount();
# ^* f. f( j: K0 [; F4 y/ x - swipeBehavior.isMounted(); // false
复制代码Functions : - import {, }6 S) P3 A3 K6 C& [
- unmountClosingBehavior,
6 s! @) Z0 l- `- g ^) _ - isSwipeBehaviorMounted,, S* y7 c" t9 O+ C6 A( Y6 Q
- } from '@telegram-apps/sdk';
$ p5 z( b2 {; } - 1 g: Q N! G! t
- unmountSwipeBehavior();
l, X+ `4 B) |" G! D - isSwipeBehaviorMounted(); // false
复制代码 控制纵向滑动要启用或禁用垂直轻扫,请使用 enableVertical 和 disableVertical 方法。 调用这些方法时,会更新 isVerticalEnabled 信号属性值。 Variable : - swipeBehavior.enableVertical();5 K& [# ]( ~$ J8 M: q/ m
- swipeBehavior.isVerticalEnabled(); // true
5 @. m- \1 S% y4 R
/ K# h) [3 d' j6 K v- swipeBehavior.disableVertical();
0 Z! e& ?" k; h: E+ ^ - swipeBehavior.isVerticalEnabled(); // false
复制代码Functions : - import {3 l3 V* C9 r4 V! i" I
- enableVerticalSwipes," f7 o$ c6 E4 N5 ]% z
- disableVerticalSwipes,
/ a8 ~9 k( t. I( p) v - isVerticalSwipesEnabled,, @' \, R" r3 k
- } from '@telegram-apps/sdk';
. w: J5 W8 C7 r, g4 m" C1 N - 9 D/ t4 ~$ e9 D/ o, S
- enableVerticalSwipes();
) v# c& y% g5 | - isVerticalSwipesEnabled(); // true( f% E& `/ s) M$ p8 ~, l' r
- _5 O# I- ]7 |) i) V8 P6 b" K- disableVerticalSwipes();
6 b0 r6 e2 H1 o) }- L9 e( v) K - isVerticalSwipesEnabled(); // false
复制代码 $ }: t% \$ b3 a' m! B4 v- U, S
; h- e/ H3 T( K* y: h4 x) P
|