WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: animate-on-scroll (Used by 349 domains)

Animate on Scroll

πŸ‘€ Arya Dhiratara πŸ“¦ v1.0.7

Animate any Elements on scroll using the popular AOS JS library simply by adding class names.

This plugin helps you integrate easily with AOS JS library to add any AOS animations (on scroll animation) to WordPress.

It should work well with the native gutenberg core blocks or any page builder (tested with GenerateBlocks and Elementor) that provides an input field for adding custom class names to elements.

About AOS

AOS is a small JavaScript library built by MichaΕ‚ SajnΓ³g that allows you to add animated effects to HTML elements when they come into view as the user scrolls down a webpage. AOS provides a set of predefined animations using CSS that can be easily applied to elements using simple data attributes in the HTML code.

Check out the AOS demo and documentation.

How to add Animations?

Simply add the desired AOS animation to your element class name with β€œaos-” prefix and the plugin will add the corresponding aos attribute to the element tag.

Fade animations:

  • fade: aos-fade
  • fade-up: aos-fade-up
  • fade-down: aos-fade-down
  • fade-left: aos-fade-left
  • fade-right: aos-fade-right
  • fade-up-right: aos-fade-up-right
  • fade-up-left: aos-fade-up-left
  • fade-down-right: aos-fade-down-right
  • fade-down-left: : aos-fade-down-left

Flip animations:

  • flip-up: aos-flip-up
  • flip-down: aos-flip-down
  • flip-left: aos-flip-left
  • flip-right: aos-flip-right

Slide animations:

  • slide-up: aos-slide-up
  • slide-down: aos-slide-down
  • slide-left: aos-slide-left
  • slide-right: aos-slide-right

Zoom animations:

  • zoom-in: aos-zoom-in
  • zoom-in-up: aos-zoom-in-up
  • zoom-in-down: aos-zoom-in-down
  • zoom-in-left: aos-zoom-in-left
  • zoom-in-right: aos-zoom-in-right
  • zoom-out: aos-zoom-out
  • zoom-out-up: aos-zoom-out-up
  • zoom-out-down: aos-zoom-out-down
  • zoom-out-left: aos-zoom-out-left
  • zoom-out-right: aos-zoom-out-right

Animation Settings

By default, the global animation settings are

  • offset: -100
  • duration: 1100
  • easing: ease
  • delay: 0
  • once: true

you can change that using filter:

add_filter( 'aos_init', function($aos_init) {
    return '
    var aoswp_params = {
        "offset":"200",
        "duration":"1800",
        "easing":"ease-in-out",
        "delay":"0",
        "once": false};
    ';
} );

or add the extra classes below to the element for individual settings. The plugin will add the corresponding aos attribute to the tag.

Once behavior:

  • once=true: aos-once-true
  • once=false: aos-once-false

Easing functions:

  • linear: aos-easing-linear
  • ease: aos-easing-ease
  • ease-in: aos-easing-ease-in
  • ease-out: aos-easing-ease-out
  • ease-in-out: aos-easing-ease-in-out
  • ease-in-back: aos-easing-ease-in-back
  • ease-out-back: aos-easing-ease-out-back
  • ease-in-out-back: aos-easing-ease-in-out-back
  • ease-in-sine: aos-easing-ease-in-sine
  • ease-out-sine: aos-easing-ease-out-sine
  • ease-in-out-sine: aos-easing-ease-in-out-sine
  • ease-in-quad: aos-easing-ease-in-quad
  • ease-out-quad: aos-easing-ease-out-quad
  • ease-in-out-quad: aos-easing-ease-in-out-quad
  • ease-in-cubic: aos-easing-ease-in-cubic
  • ease-out-cubic: aos-easing-ease-out-cubic
  • ease-in-out-cubic: aos-easing-ease-in-out-cubic
  • ease-in-quart: aos-easing-ease-in-quart
  • ease-out-quart: aos-easing-ease-out-quart
  • ease-in-out-quart: aos-easing-ease-in-out-quart

Animation Duration:

  • 100ms: aos-duration-100
  • 200ms: aos-duration-200
  • 300ms: aos-duration-300
  • 400ms: aos-duration-400
  • 500ms: aos-duration-500
  • 600ms: aos-duration-600
  • 700ms: aos-duration-700
  • 800ms: aos-duration-800
  • 900ms: aos-duration-900
  • 1000ms: aos-duration-1000
  • 1100ms: aos-duration-1100
  • 1200ms: aos-duration-1200
  • 1300ms: aos-duration-1300
  • 1400ms: aos-duration-1400
  • 1500ms: aos-duration-1500
  • 1600ms: aos-duration-1600
  • 1700ms: aos-duration-1700
  • 1800ms: aos-duration-1800
  • 1900ms: aos-duration-1900
  • 2000ms: aos-duration-2000
  • 2100ms: aos-duration-2100
  • 2200ms: aos-duration-2200
  • 2300ms: aos-duration-2300
  • 2400ms: aos-duration-2400
  • 2500ms: aos-duration-2500
  • 2600ms: aos-duration-2600
  • 2700ms: aos-duration-2700
  • 2800ms: aos-duration-2800
  • 2900ms: aos-duration-2900
  • 3000ms: aos-duration-3000

Animation Delay: (*new, added in 1.0.2)

  • 100ms: aos-delay-100
  • 200ms: aos-delay-200
  • 300ms: aos-delay-300
  • 400ms: aos-delay-400
  • 500ms: aos-delay-500
  • 600ms: aos-delay-600
  • 700ms: aos-delay-700
  • 800ms: aos-delay-800
  • 900ms: aos-delay-900
  • 1000ms: aos-delay-1000
  • 1100ms: aos-delay-1100
  • 1200ms: aos-delay-1200
  • 1300ms: aos-delay-1300
  • 1400ms: aos-delay-1400
  • 1500ms: aos-delay-1500
  • 1600ms: aos-delay-1600
  • 1700ms: aos-delay-1700
  • 1800ms: aos-delay-1800
  • 1900ms: aos-delay-1900
  • 2000ms: aos-delay-2000
  • 2100ms: aos-delay-2100
  • 2200ms: aos-delay-2200
  • 2300ms: aos-delay-2300
  • 2400ms: aos-delay-2400
  • 2500ms: aos-delay-2500
  • 2600ms: aos-delay-2600
  • 2700ms: aos-delay-2700
  • 2800ms: aos-delay-2800
  • 2900ms: aos-delay-2900
  • 3000ms: aos-delay-3000

To Disable Animations On Specific Device

  • To disable animations on certain elements on devices larger than 767px, simply add aoswp-disable-desktop class name to the element tag
    Β 
  • To disable animations on certain elements on devices smaller than 766px, simply add aoswp-disable-mobile class name to the element tag
    Β 
  • To disable animations site-wide / per page basis on specific devices:
    add this lines to your css files:

    @media ( your media query ) {

        html:not(.no-js) .aoswp-enabled [data-aos] {
            opacity: 1!important;
            -webkit-transform: none!important;
            transform: none!important;
            transition: none!important;
            transition-timing-function: unset!important;
            transition-duration: unset!important;
            transition-property: none!important;
        }
    

    }

Β 

Note

  • Both AOS JavaScript and CSS will only be loaded if there is β€˜aos-β€˜ in the page’s html. So this plugin will not add bloat to pages that do not use/need the AOS animations.
    Β 
  • Although the AOS library is already lightweight, the CSS and JS in this plugin are delay-able, so it won’t hurt your site’s performance at all. (You can use Optimize More! to delay the CSS and JS)

Disclaimer

This plugin doesn’t add anything to your database and won’t do any permanent change to your HTML, so you can safely deactivate and delete it when you no longer need it.

USEFUL PLUGINS TO OPTIMIZE YOUR SITE’S SPEED:

  • Optimize More! – A DIY WordPress Page Speed Optimization Pack. Features:
    • Load CSS Asynchronously – selectively load CSS file(s) asynchronously on selected post/page types.
    • Delay CSS and JS until User Interaction – selectively delay CSS/JS load until user interaction on selected post/page types.
    • Preload Critical CSS, JS, and Font Files – selectively preload critical CSS/JS/Font file(s) on selected post/page types.
    • Remove Unused CSS and JS Files – selectively remove unused CSS/JS file(s) on selected post/page types.
    • Load Gutenberg CSS conditionally – Load each CSS of the core blocks will only get enqueued when the block gets rendered on a page.
    • Advance Defer JS – hold JavaScripts load until everything else has been loaded. Adapted from the legendary varvy’s defer js method *recommended for defer loading 3rd party scripts like ads, pixels, and trackers
    • Defer JS – selectively defer loading JavaScript file(s) on selected post/page types.
    • Remove Passive Listener Warnings – Remove the β€œDoes not use passive listeners to improve scrolling performance” warning on Google PageSpeed Insights
      Β 
  • Optimize More! Images – A simple yet powerfull image, iframe, and video optimization plugin (Lazy load images / iframes / videos, Preload featured images automatically). Also support lazy loading CSS background images.
    Β 
  • Lazyload, Preload, and more! – A simplified version of Optimize More! Images. Able to do what Optimize More! Images can do but without UI for settings (you can customize the default settings using filters). This tiny little plugin (around 14kb zipped) will automatically:
    • lazyload your below the fold images (img tag and bg images) /iframes / videos,
    • preload your featured images,
    • and add loading=”eager” to your featured image and all images that have no-lazy or skip-lazy class.

Other USEFUL PLUGIN:

  • Shop Extra – A lightweight plugin to optimize your WooCommerce & Business site:
    • Floating WhatsApp Chat Widget (can be use without WooCommerce),
    • WhatsApp Order Button for WooCommrece,
    • Hide/Disable WooCommerce Elements,
    • WooCommerce Strings Translations,
    • and many more.
      Β 
  • Image & Video Lightbox – A lightweight plugin that automatically adds Lightbox functionality to images displayed by WordPress (Gutenberg) Gallery and Image Blocks, as well as GenerateBlocks Image Blocks, and also videos created by the core Video Block, without the need to set the link to media file manually one by one.

Β 

DomainExposuresHeadersLast Checked
i*t*o*r*e.com βœ… F 2026-07-27 00:28:03
a*p*r*b*l*e*d*b*i.com βœ… A 2026-07-26 22:50:00
m*s*i*o*n*a*i*n.org (WP 7.0.2) βœ… F 2026-07-26 11:52:47
v*n*-*i*l*e*.com βœ… F 2026-07-26 04:19:34
c*d*r*n*i*e*r*n*.com (WP 7.0) πŸ‘€ F 2026-07-25 22:21:11
a*r*u*t*o*n*i*.org (WP 7.0.2) πŸ‘€ F 2026-07-25 19:47:01
t*e*o*.nl πŸ‘€ D 2026-07-25 13:12:49
t*a*e*w*y*h*s*o.com (WP 7.0.1) πŸ‘€ F 2026-07-25 01:54:08
d*y*a*k*.com βœ… D 2026-07-24 23:43:05
t*a*p*a*t*c*e*y*l*.com (WP 7.0.2) βœ… F 2026-07-24 23:25:47
n*r*u*m.cl πŸ‘€ F 2026-07-24 22:32:52
s*o*m*t*s.com πŸ‘€ F 2026-07-24 17:18:08
a*t*f*h*c*o*e*.com (WP 7.0.2) πŸ‘€ F 2026-07-24 13:26:23
h*b*r*h.com πŸ‘€ F 2026-07-24 12:00:50
f*n*-*e*e*l*r*.com πŸ”“ F 2026-07-24 11:57:56
l*w*r*o*t.ch (WP 7.0.2) πŸ‘€ D 2026-07-24 09:16:46
m*h*v*r*a*m*s*c.ir πŸ‘€ F 2026-07-24 05:15:17
n*r*i*a.se πŸ‘€ F 2026-07-24 04:08:55
o*e*e*s*i*n*s.com (WP 6.6.2) βœ… F 2026-07-23 23:40:33
o*e*e*s*i*n*.com (WP 6.6.2) βœ… F 2026-07-23 23:40:33
o*e*-*n*e*g*e*.com (WP 6.6.2) βœ… F 2026-07-23 23:40:33
o*e*-*n*e*g*e.com (WP 6.6.2) βœ… F 2026-07-23 23:40:33
b*c*l*a*s.com (WP 7.0.2) πŸ‘€ F 2026-07-23 22:13:15
a*t*-*r*e*d*.com βœ… F 2026-07-23 18:50:57
c*o*s*i*h*l*s*a*.se βœ… F 2026-07-23 13:47:39
a*i*e*.eu (WP 7.0.2) βœ… F 2026-07-23 12:51:58
d*r*f*e*e*k*r*.com (WP 7.0) πŸ‘€ F 2026-07-23 12:37:32
b*0.fi βœ… D 2026-07-23 01:20:51
a*e*a*o*n*a*i*n.org πŸ‘€ F 2026-07-22 18:20:07
w*d*-*i*a*e*.com (WP 7.0.2) πŸ‘€ F 2026-07-22 18:00:43
s*a*t*o*i*l*a*i*b*a*.com (WP 6.8.6) βœ… F 2026-07-22 13:57:43
v*o*.nl (WP 7.0.2) πŸ‘€ C 2026-07-22 08:04:41
h*r*e*t*h*u*d*.com πŸ‘€ F 2026-07-22 07:25:58
q*b*.c*m.au βœ… D 2026-07-22 05:40:38
i*d*x*o.lk (WP 7.0.2) βœ… F 2026-07-22 03:46:44
l*p*r*s*o*i*t.com (WP 7.0.2) πŸ‘€ F 2026-07-22 03:36:04
f*m*r*g*l*e*y.org (WP 7.0.2) βœ… F 2026-07-22 02:42:08
h*r*z*n*a*i*.com (WP 7.0.2) πŸ‘€ F 2026-07-22 02:13:32
n*x*e*l.eu (WP 7.0.2) πŸ”“ F 2026-07-22 00:47:21
a*p*n*a*t*e*s.de (WP 7.0.2) πŸ‘€ F 2026-07-21 23:10:53
v*g*e*s*r.com (WP 7.0.2) πŸ‘€ F 2026-07-21 20:24:29
e*e*s*s.com (WP 7.0.1) βœ… F 2026-07-21 17:11:05
r*o*e*e*t.cl (WP 7.0.2) πŸ‘€ F 2026-07-21 17:09:40
t*a*r*u*.c*m.au βœ… B 2026-07-21 13:12:04
u*d*t*p*p*r.com βœ… F 2026-07-21 13:09:12
a*b*l*c*l*g*c*.com βœ… F 2026-07-21 05:50:20
f*y*a*d*a*e*.com βœ… F 2026-07-21 01:41:55
h*m*l*n*i*g*i*a*c*a*.com βœ… D 2026-07-20 22:39:18
e*s*e*d.com (WP 7.0.2) βœ… F 2026-07-20 22:38:37
c*s*d*r*p*s*e*t*u*i*l*.pe (WP 7.0.2) βœ… D 2026-07-20 22:03:34
k*e*m*r*.com (WP 7.0.1) βœ… F 2026-07-20 20:51:18
m*r*h*n*p*r*o*m*n*e*r*u*.com βœ… F 2026-07-20 17:11:24
e*r*t*e*u*i*i*s.com (WP 7.0.2) πŸ‘€ F 2026-07-20 12:16:28
s*r*m*n*h*a*t*.com (WP 7.0) βœ… F 2026-07-20 10:44:29
u*i*w*b*e*h.com (WP 7.0.2) πŸ‘€ F 2026-07-20 10:41:43
b*h*-*r*h*t*c*s.com (WP 7.0.2) βœ… F 2026-07-20 08:09:24
c*t*z*n*.me πŸ‘€ C 2026-07-20 03:53:16
r*b*i*s*l*v*y.com (WP 6.9.5) βœ… F 2026-07-20 02:41:10
s*a*o*e*d*k*t*.org (WP 7.0) βœ… F 2026-07-20 00:20:08
o*e*a*i*n*e*p*r*s.com πŸ‘€ B 2026-07-19 22:35:46
e*u*r*s*i*n.com βœ… F 2026-07-19 20:28:33
s*c*e*x*.de (WP 7.0.2) πŸ‘€ F 2026-07-19 20:05:41
k*n*m*t*w*o*d*s*g*.com (WP 7.0.2) βœ… D 2026-07-19 16:45:50
r*b*.com βœ… F 2026-07-19 16:29:19
a*o*o*o.com (WP 7.0.2) βœ… F 2026-07-19 16:27:05
c*o*r.ai (WP 7.0.2) πŸ‘€ F 2026-07-19 16:10:29
d*t*l*n*.be βœ… C 2026-07-19 15:42:42
g*o*t*o*i*n.com (WP 7.0.2) βœ… D 2026-07-19 14:28:53
p*o*o*a*b.se πŸ‘€ F 2026-07-19 12:51:29
a*l*c*t*b*v*.com βœ… F 2026-07-19 12:16:28
s*k*t*c.com (WP 7.0.2) βœ… F 2026-07-19 07:57:46
n*v*l*e*e*i*t*a*s.c*.uk (WP 7.0.2) πŸ‘€ D 2026-07-19 07:43:55
k*i*e*l*w.com βœ… F 2026-07-19 03:12:48
r*s*o*a*t*l*f*v*r*t*.com πŸ‘€ F 2026-07-19 02:23:55
h*n*l*.net (WP 7.0.1) πŸ‘€ F 2026-07-19 01:47:47
b*i*h*r*d*e.com (WP 7.0.1) βœ… F 2026-07-19 00:55:42
c*n*r*-*o*l*r*.com βœ… D 2026-07-18 17:44:31
s*a*k*i*g*o*s*i*s.com (WP 7.0.2) βœ… F 2026-07-18 16:11:03
e*n*x.be (WP 7.0.2) βœ… F 2026-07-18 16:03:09
d*a*w*o*a*i*e.com (WP 7.0.2) πŸ‘€ F 2026-07-18 15:16:41
v*c*o*g*o*p.vn (WP 7.0.2) βœ… F 2026-07-18 14:12:55
h*j*n*c*l*a*s.com (WP 7.0.2) βœ… F 2026-07-17 22:32:56
b*a*n*p*i*t*n*.com (WP 7.0.1) βœ… A 2026-07-17 11:35:31
h*d*e*s*a*k.com (WP 6.7.5) βœ… F 2026-07-17 10:12:13
c*m*a*n*e*n*f*.com (WP 7.0.1) βœ… F 2026-07-17 09:17:49
t*a*e*.c*m.au βœ… B 2026-07-17 08:44:44
t*e*x*c*o*r*e*y*o*c*.uk (WP 7.0) πŸ‘€ F 2026-07-17 07:23:32
d*v*i*i*y.com βœ… F 2026-07-17 06:55:40
d*t*c*n*r*d*c*.com πŸ‘€ F 2026-07-17 05:00:25
r*v*s*l*f*c*a*h*n*.com (WP 7.0.1) πŸ‘€ F 2026-07-17 04:46:40
t*i*a*d.com (WP 6.7.2) πŸ‘€ F 2026-07-16 22:28:00
e*c*u*i*e*p*x*c*a*i*g*.com (WP 6.8.5) βœ… F 2026-07-16 19:48:34
r*s*o*e*m*.com (WP 6.9.1) βœ… D 2026-07-16 15:41:25
t*i*o*-*o*s*l*i*g.com (WP 7.0.1) βœ… A 2026-07-16 09:31:57
t*i*l*f*a*k*c*a*l.com (WP 7.0.1) βœ… F 2026-07-16 04:48:10
a*l*c*t*b*v*.org πŸ‘€ F 2026-07-16 01:20:24
i*-*e*t*r.dk (WP 7.0.1) βœ… F 2026-07-15 20:41:01
d*p*t*o*n*c*.com βœ… F 2026-07-15 20:12:55
l*g*r*s*f*i*t.se πŸ‘€ F 2026-07-15 19:07:03
c*f*p*r*u*a*.de (WP 6.8.3) πŸ‘€ F 2026-07-15 17:52:59

Top 50 Plugins

Plugin Count
elementor 1,781,350
contact-form-7 1,763,473
elementor-pro 1,056,403
woocommerce 818,396
revslider 613,184
jetpack 459,687
js_composer 423,500
wp-rocket 341,701
essential-addons-for-elementor-lite 267,186
complianz-gdpr 260,358
gravityforms 257,842
google-site-kit 232,120
cookie-law-info 230,851
instagram-feed 226,401
sitepress-multilingual-cms 212,109
header-footer-elementor 208,941
google-analytics-for-wordpress 207,506
bluehost-wordpress-plugin 193,159
elementskit-lite 182,255
gutenberg 167,504
cookie-notice 150,713
litespeed-cache 142,941
gtranslate 126,300
wpforms-lite 125,731
the-events-calendar 123,260
gutenberg-core 121,980
astra-sites 114,946
popup-maker 110,750
woocommerce-payments 110,631
tablepress 102,411
honeypot 98,192
astra-addon 94,627
wp-smushit 91,689
duracelltomi-google-tag-manager 90,994
layerslider 90,135
coblocks 89,955
all-in-one-seo-pack 89,864
bb-plugin 86,751
akismet 85,480
premium-addons-for-elementor 85,165
cleantalk-spam-protect 83,466
ml-slider 82,941
mailchimp-for-wp 82,596
megamenu 80,887
woocommerce-gateway-stripe 80,153
fusion-builder 77,796
jet-engine 77,676
ewww-image-optimizer 76,887
smart-slider-3 76,763
wp-pagenavi 76,618

Top 50 Themes

Theme Count
hello-elementor 623,608
Divi 500,513
astra 418,376
flatsome 137,115
Avada 122,205
generatepress 115,566
pub 84,984
oceanwp 81,354
kadence 79,424
enfold 69,500
salient 65,679
twentyseventeen 54,668
bb-theme 52,923
betheme 52,600
twentytwentyfour 52,508
blocksy 51,323
cocoon-master 49,331
dt-the7 45,735
twentytwentyfive 44,941
h4 42,389
woodmart 41,191
neve 38,486
Avada-Child-Theme 37,096
gox 36,285
bridge 31,680
twentytwentyone 30,564
lightning 29,886
twentytwenty 28,924
swell 27,928
bricks 26,537
Impreza 26,232
Newspaper 24,292
twentytwentythree 22,275
epik-redesign 19,258
twentytwentytwo 18,955
uncode 18,704
twentysixteen 17,709
pro 17,598
sydney 16,686
storefront 16,470
Total 14,553
hello-theme-child-master 14,056
factory-templates-4 13,746
extendable 13,275
themify-ultra 13,031
hestia 12,693
yootheme 12,635
yith-wonder 12,470
porto 12,064
jupiter 11,703