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

Plugin: animate-on-scroll (Used by 348 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,779,388
contact-form-7 1,761,088
elementor-pro 1,055,687
woocommerce 817,660
revslider 612,251
jetpack 458,895
js_composer 422,839
wp-rocket 341,544
essential-addons-for-elementor-lite 266,783
complianz-gdpr 259,818
gravityforms 257,768
google-site-kit 232,142
cookie-law-info 230,394
instagram-feed 226,099
sitepress-multilingual-cms 211,909
header-footer-elementor 208,549
google-analytics-for-wordpress 207,147
bluehost-wordpress-plugin 193,005
elementskit-lite 181,900
gutenberg 167,565
cookie-notice 150,381
litespeed-cache 143,078
gtranslate 126,061
wpforms-lite 125,379
the-events-calendar 123,077
gutenberg-core 122,519
astra-sites 114,573
popup-maker 110,596
woocommerce-payments 110,364
tablepress 102,292
honeypot 98,159
astra-addon 94,468
wp-smushit 91,509
duracelltomi-google-tag-manager 90,847
coblocks 90,281
layerslider 89,960
all-in-one-seo-pack 89,716
bb-plugin 86,712
akismet 85,457
premium-addons-for-elementor 85,000
cleantalk-spam-protect 83,269
ml-slider 82,930
mailchimp-for-wp 82,435
megamenu 80,780
woocommerce-gateway-stripe 80,066
jet-engine 77,767
fusion-builder 77,630
ewww-image-optimizer 76,815
smart-slider-3 76,682
wp-pagenavi 76,584

Top 50 Themes

Theme Count
hello-elementor 623,140
Divi 499,644
astra 417,537
flatsome 137,169
Avada 121,933
generatepress 115,455
pub 85,361
oceanwp 81,158
kadence 79,293
enfold 69,360
salient 65,583
twentyseventeen 54,581
bb-theme 52,905
betheme 52,583
twentytwentyfour 52,393
blocksy 51,239
cocoon-master 49,293
dt-the7 45,667
twentytwentyfive 44,879
h4 42,570
woodmart 41,447
neve 38,409
Avada-Child-Theme 37,034
gox 36,294
bridge 31,641
twentytwentyone 30,513
lightning 29,886
twentytwenty 28,872
swell 27,928
bricks 26,549
Impreza 26,210
Newspaper 24,349
twentytwentythree 22,239
epik-redesign 19,218
twentytwentytwo 18,921
uncode 18,690
twentysixteen 17,681
pro 17,583
sydney 16,662
storefront 16,428
Total 14,531
hello-theme-child-master 14,048
factory-templates-4 13,733
extendable 13,170
themify-ultra 12,997
hestia 12,665
yootheme 12,622
yith-wonder 12,423
porto 12,058
jupiter 11,700