캐러셀(슬라이더라고도 함)은 위젯 목록을 슬라이드쇼 형식으로 회전하여 표시하며, 이전 또는 다음 위젯으로 이동하는 버튼이 있습니다.
Google Workspace 부가기능 및 Google Chat 앱에서 사용할 수 있습니다.
const carousel = CardService.newCarousel() .addCarouselCard(CardService.newCarouselCard().addWidget( CardService.newTextParagraph().setText('The first text paragraph in carousel'))) .addCarouselCard(CardService.newCarouselCard().addWidget( CardService.newTextParagraph().setText('The second text paragraph in carousel'))) .addCarouselCard(CardService.newCarouselCard().addWidget( CardService.newTextParagraph().setText('The third text paragraph in carousel')))
메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
add | Carousel | 캐러셀 카드를 추가합니다. |
자세한 문서
add Carousel Card(card)
캐러셀 카드를 추가합니다.
const carousel = CardService.newCarousel() .addCarouselCard(CardService.newCarouselCard().addWidget( CardService.newTextParagraph().setText('The first text paragraph in carousel')));
매개변수
이름 | 유형 | 설명 |
---|---|---|
card | Carousel | 추가할 캐러셀 카드입니다. |
리턴
Carousel
: 연결을 위한 객체입니다.