gsap-scrolltrigger
Build Scroll Animations with GSAP ScrollTrigger
Scroll-driven interfaces can break when triggers, pinning, refresh order, or cleanup are configured incorrectly. This skill provides focused GSAP ScrollTrigger implementation guidance.
自分のエージェントでインストール
このリクエストをエージェントにコピーしてください。正規の Skill ページとマニフェストが含まれています。
Review the Skillstore skill "gsap-scrolltrigger" from https://skillstore.io/skills/greensock-gsap-scrolltrigger.md and its manifest at https://skillstore.io/api/skills/greensock-gsap-scrolltrigger/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.エージェントは引き続き計画を提示し、セキュリティポリシーで必要な確認を求める必要があります。
エージェントが読めるリソース
AI エージェント、クローラー、スクリプトがページ全体ではなく整理されたコンテキストを必要とする場合は、これらのリンクを使ってください。
テストする
「gsap-scrolltrigger」を使用しています。 Make feature cards fade upward as they enter the viewport.
期待される結果:
- Use ScrollTrigger.batch for the card selector.
- Animate each delivered batch with opacity, vertical movement, and a short stagger.
- Set an entry threshold near the lower viewport and define reverse behavior explicitly.
「gsap-scrolltrigger」を使用しています。 Pin a chapter and connect its timeline to scrolling.
期待される結果:
- Attach one ScrollTrigger to the parent timeline.
- Use top alignment for the start and a measured scroll distance for the end.
- Enable numeric scrub and pin the chapter wrapper.
- Refresh after content or font changes affect layout.
「gsap-scrolltrigger」を使用しています。 Stop ScrollTrigger instances after a React route change.
期待される結果:
- Scope animation creation to the component.
- Use the GSAP React hook or a GSAP context for cleanup.
- Revert the scope during unmount and refresh after the next route layout settles.
セキュリティ監査
安全All 62 static findings are false positives caused by Markdown formatting, JavaScript API examples, official GSAP documentation links, and benign API identifiers. No executable shell commands, system reconnaissance, prompt injection, credential access, or data exfiltration behavior was found.
リスク要因
⚙️ 外部コマンド (50)
🌐 ネットワークアクセス (4)
このレポートを共有・引用
バージョン付き評価レポート、中立的なバッジ、埋め込みカード、引用を共有できます。Skillstore は証拠を報告しますが、この Skill が安全かどうかは判断しません。
レポートリンクをコピー
https://skillstore.io/skills/greensock-gsap-scrolltrigger/audits/1?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_reportMarkdownバッジ
[](https://skillstore.io/skills/greensock-gsap-scrolltrigger?utm_source=security_passport_badge)HTMLバッジ
<a href="https://skillstore.io/skills/greensock-gsap-scrolltrigger?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/greensock-gsap-scrolltrigger/security.svg" alt="Skillstore security assessment" loading="lazy"></a>埋め込みカード
<iframe src="https://skillstore.io/embed/skills/greensock-gsap-scrolltrigger.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>学術引用 (APA · BibTeX · CFF)
APA形式の引用
greensock. (2026). gsap-scrolltrigger security audit report (audit version 1) [Author version unspecified]. Skillstore. https://skillstore.io/skills/greensock-gsap-scrolltrigger/audits/1BibTeX形式の引用
@techreport{greensock-greensock-gsap-scrolltrigger-2026,
author = {greensock},
title = {gsap-scrolltrigger security audit report (audit version 1)},
institution = {Skillstore},
year = {2026},
number = {1},
url = {https://skillstore.io/skills/greensock-gsap-scrolltrigger/audits/1},
note = {Author version unspecified}
}CITATION.cff
cff-version: 1.2.0
message: "If you use this Skill, cite its author and this versioned security audit report."
title: "gsap-scrolltrigger security audit report (audit version 1)"
version: "unspecified"
type: report
authors:
- name: "greensock"
date-released: "2026-08-24"
url: "https://skillstore.io/skills/greensock-gsap-scrolltrigger/audits/1"
identifiers:
- type: other
value: "skillstore:greensock-gsap-scrolltrigger:audit:1"
description: "Skillstore immutable audit report identifier"
Skillstore スコア
このスコアの理由 証拠の信頼度: 中作成できるもの
Create a Product Story
Build pinned, scrubbed sections that reveal product details as visitors scroll.
Animate Repeated Content
Batch card or gallery entrance animations while controlling stagger and reverse behavior.
Maintain React Animations
Structure ScrollTrigger setup, refresh logic, and cleanup around component lifecycles.
これらのプロンプトを試す
Animate [selector] from [initial state] to [final state] when it reaches [viewport position]. Use GSAP ScrollTrigger.
Create a scrubbed animation for [section]. Define practical start and end values, optional pinning, and development markers.
Design pinned horizontal movement for [content]. Include containerAnimation triggers, responsive distance calculations, refresh handling, and stated caveats.
Review my React ScrollTrigger implementation for registration, scoping, refresh timing, responsive behavior, cleanup, reduced motion, and timeline composition.
ベストプラクティス
- Register ScrollTrigger once before creating any trigger.
- Create triggers in page order and refresh after layout-changing content loads.
- Clean up triggers when components or animated elements are removed.
回避
- Do not place ScrollTrigger on a child tween inside a controlled timeline.
- Do not combine scrub and toggleActions on the same trigger.
- Do not leave development markers enabled in production.