GIF Scroll Animation avatar
GIF Scroll Animation
Try for free

No credit card required

View all Actors
GIF Scroll Animation

GIF Scroll Animation

glenn/gif-scroll-animation
Try for free

No credit card required

Free tool to automatically create an animated GIF of any scrolling web page. Useful for testing UX, showcasing your work, and capturing any website as a GIF, including clickable elements and animations. Includes settings to adjust speed, wait before scrolling, slow down on-page animations, and more.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "url": "https://crawlee.dev/",
11    "proxyOptions": {
12        "useApifyProxy": true
13    },
14    "frameRate": 7,
15    "scrollPercentage": 10,
16    "recordingTimeBeforeAction": 1000
17};
18
19(async () => {
20    // Run the Actor and wait for it to finish
21    const run = await client.actor("glenn/gif-scroll-animation").call(input);
22
23    // Fetch and print Actor results from the run's dataset (if any)
24    console.log('Results from dataset');
25    const { items } = await client.dataset(run.defaultDatasetId).listItems();
26    items.forEach((item) => {
27        console.dir(item);
28    });
29})();
Developer
Maintained by Apify
Actor metrics
  • 94 monthly users
  • 86.2% runs succeeded
  • 0.0 days response time
  • Created in Jul 2019
  • Modified 10 months ago
Categories