Scroll-Driven Animations Debugger

A DevTools extension to visualize and debug Scroll-Driven Animations

Scroll-Driven Animations Debuggerคืออะไร?

Scroll-Driven Animations Debugger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bramus Van Damme และคุณลักษณะหลักของมันคือ "A DevTools extension to visualize and debug Scroll-Driven Animations"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scroll-Driven Animations Debugger

ดาวน์โหลดไฟล์ส่วนขยาย Scroll-Driven Animations Debugger ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Use this DevTools extension to debug and visualize Scroll-Driven Animations.

- Visualize the Scroll-Driven Animations’s scroller, element, and subject.
- Suppports both ScrollTimeline and ViewTimeline.
- Works with both CSS-based and WAAPI-based Scroll-Driven Animations.
- Plays nice with `position: sticky`.
- Visualize the `animation-range-start` and `animation-range-end`.
- Edit the `animation-range-start` and `animation-range-end` values.

Once installed, a new pane “Scroll-Driven Animations” gets added to Chrome DevTools’s Elements Panel. To use it, inspect an Element using Chrome DevTools as you’d normally do. Select the “Scroll-Driven Animations” panel to see a visualization of Scroll-Driven Animations that were added to that element. The visualization is a live representation of the scroller, animated element, and – in case of a ViewTimeline – tracked subject: as you scroll in the document, the visualization also updates.

Use the top toolbar to switch between multiple animations _(if more than one)_ or to set the visualization’s scale factor. Typically you don’t need to set the scale factor, as the visualization automatically adapts itself to the available space. Also included in the top toolbar are an indicator telling you which type of scroll timeline you are dealing with, and some progress numbers: total scroll progress, effect progress, actual scroll offset _(in pixels)_.

Use the “Edit Values” toggle at the bottom to bring up a range editor. Once the editor is shown, the visualization also shows indicators for the start and end range. In case of a ScrollTimeline these are two lines on the scroller’s contents. In case of a ViewTimeline these are two boxes representing the areas for the set `animation-range-*` values. Change the values using the dropdown and/or the inputs. Note that the inputs do not live-update _(for now)_; after changing click somewhere outside the field to update the value.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Scroll-Driven Animations Debugger Scroll-Driven Animations Debugger
ID ojihehfngalmpghicjgbfdmloiifhoce
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scroll-driven-animations/ojihehfngalmpghicjgbfdmloiifhoce
คำอธิบาย A DevTools extension to visualize and debug Scroll-Driven Animations
ขนาดไฟล์ 83.98 KB
จำนวนการติดตั้ง 1,370
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-10-05
วันที่เผยแพร่ 2023-09-12
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Bramus Van Damme
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/bramus/scroll-driven-animations-debugger-extension/
URL หน้าช่วยเหลือ https://github.com/bramus/scroll-driven-animations-debugger-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll-Driven Animations Debugger",
    "action": [],
    "manifest_version": 3,
    "version": "1.0.1",
    "description": "A DevTools extension to visualize and debug Scroll-Driven Animations",
    "permissions": [],
    "icons": {
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png",
        "512": "images\/icon-512.png"
    },
    "devtools_page": "devtools.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}