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

Plugin: animate-on-scroll (Used by 346 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
f*e*e*i*i*h*s*o*i*.dk βœ… F 2026-06-08 11:42:42
b*g*e*p*n*.com (WP 7.0) βœ… F 2026-06-07 04:46:10
n*a*.p*o*e*r.com βœ… F 2026-06-07 02:13:54
b*g*e*-*o*s*i*s.com (WP 7.0) βœ… F 2026-06-07 01:19:02
t*e*.fr (WP 6.9.4) βœ… A 2026-06-06 20:49:18
t*i*k*u*a*.com (WP 7.0) βœ… A 2026-06-06 17:27:30
s*e*e*g*t*s.ch βœ… F 2026-06-06 06:31:32
a*o*.com (WP 7.0) βœ… A 2026-06-05 11:01:02
t*e*o*e*t*a*l*w.com βœ… F 2026-06-04 04:22:23
m*f*c*r*.com (WP 7.0) βœ… F 2026-06-04 01:59:38
a*c*s*r*n*.com (WP 6.7.1) βœ… F 2026-06-03 23:59:09
a*e*l*f*.com (WP 7.0) βœ… F 2026-06-03 21:34:52
t*e*u*e*s*i*l*r*s*.com (WP 7.0) βœ… F 2026-06-03 20:11:09
t*e*r*c*d*r*l.com (WP 7.0) βœ… F 2026-06-03 18:11:17
c*a*g*s*i*n*e*n*t*t*t*.com βœ… F 2026-06-03 09:14:14
a*a*r*a*.com βœ… F 2026-06-03 06:16:01
f*a*c*-*o*f*n*.com (WP 7.0) βœ… F 2026-06-03 05:36:34
i*m*-*s*o*.com (WP 6.8.1) βœ… F 2026-06-03 03:07:34
a*x*g*n*n*e*n*t*o*a*.com (WP 6.6.1) βœ… F 2026-06-03 01:53:40
f*a*c*-*t*l*n*.com βœ… A 2026-06-03 01:44:39
v*n*e*t*r*o*i*g*i.com (WP 7.0) βœ… F 2026-06-02 23:53:16
a*t*m*t*c*s*r*i*e*.com (WP 7.0) βœ… F 2026-06-02 19:01:19
a*s*e*t*n*u*r*i*s*e*g*r.com βœ… F 2026-06-02 06:17:38
c*s*-*a*d*.com (WP 7.0) βœ… F 2026-06-02 05:13:57
w*r*e*b*j*i*w*j*e*.nu (WP 7.0) βœ… C 2026-06-02 03:34:54
g*l*x*m*g*u*.com βœ… D 2026-06-02 02:40:18
n*-*t*e*.com (WP 6.9.4) βœ… F 2026-06-02 02:34:37
s*r*o*m*b*.com (WP 7.0) βœ… F 2026-06-01 23:42:55
t*e*a*g*e*h*u*t*n.com (WP 6.9.4) βœ… D 2026-06-01 23:24:47
f*r*f*n*t*o*c*i*i*.com (WP 7.0) βœ… F 2026-06-01 22:59:39
d*e*m*h*r*.com (WP 7.0) βœ… F 2026-06-01 22:42:19
s*l*i*s*m*o*e*c*.com (WP 7.0) βœ… F 2026-06-01 21:39:47
u*b*n*a*n*i*e*y.com (WP 7.0) βœ… F 2026-06-01 20:57:56
f*r*v*r*i*e*a*d*.com (WP 7.0) βœ… F 2026-06-01 16:15:18
e*x.solutions (WP 7.0) βœ… F 2026-06-01 14:10:41
t*e*m*e*s*v*j*u*n*y.com (WP 6.8.2) βœ… D 2026-06-01 11:03:45
h*t*o*g*l*a*h*r.com βœ… F 2026-06-01 10:06:10
h*p*r*e*.pro βœ… F 2026-06-01 04:41:45
v*t*p*.com (WP 7.0) βœ… F 2026-06-01 04:10:25
m*o*e*a*l*w.com (WP 6.9.4) βœ… F 2026-06-01 01:11:47
m*o*x*i*e.com (WP 7.0) βœ… F 2026-06-01 00:52:54
a*d*.de (WP 7.0) βœ… F 2026-06-01 00:18:58
d*s*e*c*i*g*.com βœ… F 2026-05-31 18:26:53
e*s*s*d*p*o*u*t*.group βœ… F 2026-05-31 18:13:22
m*n*e*r*w*n*.com (WP 7.0) βœ… F 2026-05-31 16:33:29
m*n*e*e*r*-*v*n*s.com (WP 6.9.4) βœ… F 2026-05-31 16:08:03
v*l*e*.fi (WP 6.9.4) βœ… F 2026-05-31 13:33:24
m*n*t*r*o*f*n*l*c.com βœ… F 2026-05-31 13:20:49
d*r*u*.es (WP 7.0) βœ… F 2026-05-31 09:21:40
d*t*i*i*n.com (WP 7.0) βœ… F 2026-05-31 06:37:28
d*a*d*n*a*k.dk βœ… F 2026-05-31 03:33:31
d*u*s*h*-*f*e*e*e*m*t*l*n*.de (WP 7.0) βœ… F 2026-05-31 02:15:09
d*v*i*i*y.io βœ… F 2026-05-31 01:28:50
d*r*u*a*p.com (WP 7.0) βœ… F 2026-05-31 00:27:19
a*e*c*e*t*v*.com (WP 7.0) βœ… F 2026-05-30 23:17:00
c*p*t*l*e*i*s*l*t*o*s.com (WP 7.0) βœ… F 2026-05-30 21:00:29
p*e*i*r*r*e*c*e*n*n*.com (WP 7.0) βœ… F 2026-05-30 18:17:05
t*e*o*l*c*i*n*i*e.com (WP 7.0) βœ… F 2026-05-30 15:38:34
t*x*-*a*n*v*r.eu βœ… F 2026-05-30 14:30:23
n*v*d*c*m*n*.com (WP 6.9.4) βœ… D 2026-05-30 13:26:41
c*i*i*a*i*j*r*c*m*e*s*t*o*.org (WP 7.0) βœ… F 2026-05-30 12:46:06
l*n*s*a*e*e*i*n*h*e*i*a*.com (WP 6.9.4) βœ… F 2026-05-30 09:50:51
p*d*a*k*t*n*.es βœ… F 2026-05-30 08:26:12
m*g*.ch (WP 6.9.4) βœ… F 2026-05-30 06:59:30
d*m*i*e*u*a*t*g*.com (WP 7.0) βœ… F 2026-05-30 01:54:20
a*b*u*h*e*b*n*.de βœ… F 2026-05-30 01:26:48
t*s*s*a*.com (WP 7.0) βœ… A 2026-05-30 00:08:14
i*t*o*r*e.com βœ… F 2026-05-29 21:47:28
a*p*r*b*l*e*d*b*i.com βœ… A 2026-05-29 20:24:56
m*s*i*o*n*a*i*n.org (WP 7.0) βœ… F 2026-05-29 11:00:00
h*p*r*n*.pro βœ… F 2026-05-29 02:49:12
l*a.s*e*.u*f.edu βœ… F 2026-05-29 02:36:36
c*d*r*n*i*e*r*n*.com (WP 6.8.2) βœ… F 2026-05-29 00:12:18
a*r*u*t*o*n*i*.org (WP 7.0) βœ… F 2026-05-28 22:03:19
n*a*c*m*u*i*i*s.com (WP 7.0) βœ… F 2026-05-28 18:07:27
t*e*o*.nl βœ… D 2026-05-28 16:29:39
j*m*s*o*t*e*n*e*l*s*a*e.com (WP 6.9.4) βœ… F 2026-05-28 10:12:35
t*a*h*i*n*s*e*e.com (WP 6.9.4) βœ… F 2026-05-28 08:31:42
t*a*e*w*y*h*s*o.com (WP 7.0) βœ… F 2026-05-28 06:46:21
d*y*a*k*.com βœ… D 2026-05-28 04:52:29
t*a*p*a*t*c*e*y*l*.com (WP 7.0) βœ… F 2026-05-28 04:40:42
n*r*u*m.cl βœ… F 2026-05-28 03:54:03
s*o*m*t*s.com βœ… F 2026-05-27 23:25:11
a*t*f*h*c*o*e*.com (WP 7.0) βœ… F 2026-05-27 20:05:32
f*n*-*e*e*l*r*.com πŸ”“ F 2026-05-27 18:56:09
h*b*r*h.com βœ… F 2026-05-27 18:53:09
l*w*r*o*t.ch (WP 7.0) βœ… D 2026-05-27 16:38:06
r*s*h*l*f*r*v*.com (WP 7.0) βœ… F 2026-05-27 14:27:32
n*r*i*a.se βœ… F 2026-05-27 12:38:20
j*a*c*k*r.w*e*g*n*.com βœ… F 2026-05-27 10:07:35
o*e*e*s*i*n*s.com (WP 6.6.2) βœ… F 2026-05-27 08:58:57
o*e*e*s*i*n*.com (WP 6.6.2) βœ… F 2026-05-27 08:58:57
o*e*-*n*e*g*e*.com (WP 6.6.2) βœ… F 2026-05-27 08:58:57
o*e*-*n*e*g*e.com (WP 6.6.2) βœ… F 2026-05-27 08:58:57
b*c*l*a*s.com (WP 7.0) βœ… F 2026-05-27 07:40:16
a*t*-*r*e*d*.com βœ… F 2026-05-27 04:35:36
c*o*s*i*h*l*s*a*.se βœ… F 2026-05-27 00:06:21
a*i*e*.eu (WP 7.0) βœ… F 2026-05-26 23:15:01
d*r*f*e*e*k*r*.com (WP 6.9.4) βœ… F 2026-05-26 23:02:45
c*i*d*e*s*g*n*y.com (WP 6.9.1) βœ… F 2026-05-26 22:15:57

Top 50 Plugins

Plugin Count
elementor 1,800,450
contact-form-7 1,770,416
elementor-pro 1,049,481
woocommerce 816,578
revslider 617,763
jetpack 467,002
js_composer 432,362
wp-rocket 334,096
essential-addons-for-elementor-lite 293,692
gravityforms 267,060
complianz-gdpr 256,646
cookie-law-info 231,313
instagram-feed 228,088
google-site-kit 222,053
sitepress-multilingual-cms 221,190
google-analytics-for-wordpress 214,049
header-footer-elementor 210,208
elementskit-lite 206,911
bluehost-wordpress-plugin 190,775
gutenberg 162,337
gutenberg-core 159,507
cookie-notice 151,371
the-events-calendar 131,527
litespeed-cache 130,994
wpforms-lite 129,550
gtranslate 127,925
astra-sites 119,573
popup-maker 116,091
woocommerce-payments 112,960
tablepress 109,187
coblocks 99,539
honeypot 97,392
astra-addon 95,313
duracelltomi-google-tag-manager 93,533
wp-smushit 93,516
all-in-one-seo-pack 93,320
LayerSlider 91,657
bb-plugin 90,822
premium-addons-for-elementor 86,880
megamenu 86,508
akismet 86,074
cleantalk-spam-protect 83,880
mailchimp-for-wp 83,756
woocommerce-gateway-stripe 83,116
ml-slider 81,034
fusion-builder 79,664
borlabs-cookie 79,520
ewww-image-optimizer 79,050
wp-pagenavi 78,797
formidable 78,063

Top 50 Themes

Theme Count
hello-elementor 615,573
Divi 510,726
astra 423,626
flatsome 133,744
Avada 124,341
generatepress 119,948
pub 109,942
oceanwp 83,460
kadence 78,474
enfold 71,844
salient 66,714
twentytwentyfour 58,958
h4 56,410
twentyseventeen 56,190
bb-theme 55,281
cocoon-master 52,095
betheme 51,820
blocksy 50,688
dt-the7 46,160
twentytwentyfive 43,814
neve 39,351
Avada-Child-Theme 37,622
gox 33,449
woodmart 33,292
bridge 32,878
twentytwentyone 32,115
lightning 31,449
twentytwenty 30,045
swell 28,597
Impreza 26,441
bricks 26,019
sydney 25,643
twentytwentythree 24,026
Newspaper 23,472
voxel 22,440
twentytwentytwo 19,980
epik-redesign 19,270
kubio 19,178
uncode 19,113
sinatra 18,819
twentysixteen 18,221
storefront 17,869
pro 17,861
Total 14,730
extendable 14,595
yith-wonder 14,041
hello-theme-child-master 13,356
themify-ultra 12,983
yootheme 12,936
factory-templates-4 12,927