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

Plugin: animate-on-scroll (Used by 445 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
t*e*o*l*c*i*n*i*e.com βœ… β€” 2025-11-10 22:54:02
s*t*r*s.com βœ… β€” 2025-11-10 12:58:03
s*t*i*s*i*a*.com βœ… β€” 2025-11-10 12:57:36
s*n*e*.com βœ… β€” 2025-11-10 12:48:41
s*n*n*a*n.com βœ… β€” 2025-11-10 12:42:56
s*i*e*c*n*u*t*n*.com βœ… β€” 2025-11-10 11:25:31
s*e*n*r*o*e*.com βœ… β€” 2025-11-10 11:13:54
s*a*e*l*m*i*g.com βœ… β€” 2025-11-10 10:58:07
s*a*o*e*s*o*x.com βœ… β€” 2025-11-10 10:54:59
s*a*o*e*d*k*t*h.com βœ… β€” 2025-11-10 10:54:59
s*a*o*e*d*k*t*.com βœ… β€” 2025-11-10 10:54:59
s*a*t*m*t*o*.com βœ… β€” 2025-11-10 10:44:09
s*r*i*t*r*l*m*i*g*n*h*a*.com βœ… β€” 2025-11-10 10:31:12
s*n*i*e*p*u*b*n*l*c.com βœ… β€” 2025-11-10 10:13:08
s*l*o*t*y*o*s*.com βœ… β€” 2025-11-10 10:01:24
s*i*e*e*t*r*o*g*o*p.com βœ… β€” 2025-11-10 09:47:43
s*a*p*r*y*n*.com βœ… β€” 2025-11-10 09:23:22
s*r*w*h*c*b*c*e.com βœ… β€” 2025-11-10 09:10:22
s*v*n*p*u*b*n*.com βœ… β€” 2025-11-10 08:30:20
s*n*a*u*p*a*n*n*.com βœ… β€” 2025-11-10 07:52:30
s*n*e*p*a*g*i*n*y.com βœ… β€” 2025-11-10 07:42:05
s*l*l*m*i*g.com βœ… β€” 2025-11-10 07:23:01
s*l*c*l.com βœ… β€” 2025-11-10 07:15:09
s*f*c*l*p*u*b*n*.com βœ… β€” 2025-11-10 06:51:29
s*3*o*e*.com βœ… β€” 2025-11-10 06:38:43
p*o*o*a*b*r*s.com βœ… β€” 2025-11-09 23:10:24
p*o*o*u*h*s*i*a*i*y.com βœ… β€” 2025-11-09 22:58:36
p*o*i*e*i*m*.com βœ… β€” 2025-11-09 22:48:56
p*o*e*s*o*a*-*o*l*.com βœ… β€” 2025-11-09 22:47:02
p*o*e*s*l*t*o*.com βœ… β€” 2025-11-09 22:41:42
p*i*e*r*c*s*s*f*t*.com βœ… β€” 2025-11-09 22:22:31
p*e*i*i*n*d*c*n*i*g.com βœ… β€” 2025-11-09 21:57:13
p*r*e*t*a*t*i*e*u*i*e*s.com βœ… β€” 2025-11-09 18:56:50
p*p*e*b*a*d*a*a*e*s.com βœ… β€” 2025-11-09 18:52:49
p*d*n*i*i*y.com βœ… β€” 2025-11-09 18:37:12
p*u*a*u*n*a*a.com βœ… β€” 2025-11-09 18:13:42
p*u*a*n.com βœ… β€” 2025-11-09 18:13:21
p*t*i*t*a*p*i*n*e*e*a*r.com βœ… β€” 2025-11-09 18:10:10
p*r*m*u*t*n*e*r*t*v*h*a*t*.com βœ… β€” 2025-11-09 17:38:23
p*n*c*u*t.com βœ… β€” 2025-11-09 17:26:39
n*-*t*e*.com βœ… β€” 2025-11-09 11:38:57
n*d*a*.com βœ… β€” 2025-11-09 11:37:47
n*x*e*t*r*l*b*.com βœ… β€” 2025-11-09 11:31:07
n*v*d*c*m*n*.com βœ… β€” 2025-11-09 10:57:51
n*v*m*c*a*a*a*e*g*t*.com βœ… β€” 2025-11-09 10:17:26
n*t*r*p*s*t*v*n*r*y.com βœ… β€” 2025-11-09 10:13:42
n*t*r*p*s*t*v*e*e*g*.com βœ… β€” 2025-11-09 10:13:42
n*t*r*l*a*a.com βœ… β€” 2025-11-09 10:11:59
m*m*r*i*i*i*g.com βœ… β€” 2025-11-09 09:03:25
m*m*f*a*g*n*y.com βœ… β€” 2025-11-09 09:03:03
m*h*m*t*w*r*o*e*.com βœ… β€” 2025-11-09 08:57:27
m*f*e*c*t*m*.com βœ… β€” 2025-11-09 08:53:53
m*e*p*r*r*o*i*g.com βœ… β€” 2025-11-09 08:50:42
m*-*o*f*n*.com βœ… β€” 2025-11-09 08:32:57
m*s*a*o*.com βœ… β€” 2025-11-09 08:23:04
m*p*e*a*.com βœ… β€” 2025-11-09 08:02:21
m*t*r*r*s*h*o*.com βœ… β€” 2025-11-09 07:28:17
m*o*e*y*a*i*r*o*i*g.com βœ… β€” 2025-11-09 07:05:33
m*o*e*a*l*w.com βœ… β€” 2025-11-09 07:05:33
m*o*x*i*e.com βœ… β€” 2025-11-09 07:05:11
m*n*g*m*r*h*p*n*k*e*.com βœ… β€” 2025-11-09 06:59:56
m*n*e*r*w*n*.com βœ… β€” 2025-11-09 06:58:50
m*n*t*r*o*f*n*l*c.com βœ… β€” 2025-11-09 06:55:53
m*n*l*c*e*.com βœ… β€” 2025-11-09 06:45:33
m*g*c*r*n*e.com βœ… β€” 2025-11-09 00:09:48
m*d*i*s*o*t*a*t*n*.com βœ… β€” 2025-11-09 00:01:17
l*n*s*a*e*e*i*n*h*e*i*a*.com βœ… β€” 2025-11-08 18:33:23
l*m*i*o*c*n*i*r*e*i*.com βœ… β€” 2025-11-08 18:23:44
l*k*l*n*c*y*r*s*a*i*g.com βœ… β€” 2025-11-08 18:17:01
j*k*i*e*a*a*e*y.com βœ… β€” 2025-11-08 11:52:54
j*t*i*v*s*m*n*g*o*p.com βœ… β€” 2025-11-08 11:51:05
j*w*l*o*u*.com βœ… β€” 2025-11-08 11:36:08
j*n*e*e*t*r*o*.com βœ… β€” 2025-11-08 11:24:24
j*n*y*k*l*n*.com βœ… β€” 2025-11-08 11:23:24
j*a*c*k*r.com βœ… β€” 2025-11-08 11:11:11
j*m*s*i*e*i*c*r*o*a*e*.com βœ… β€” 2025-11-08 10:37:17
j*c*s*e*k*i*e.com βœ… β€” 2025-11-08 10:23:03
i*a*i*g.com βœ… β€” 2025-11-08 09:18:58
i*v*s*m*n*i*f*r*a*i*s.com βœ… β€” 2025-11-08 09:04:33
i*c*d*o*.com βœ… β€” 2025-11-08 06:54:39
i*m*-*s*o*.com βœ… β€” 2025-11-08 06:23:22
h*a*-*l*m*i*g*g*i*e*.com βœ… β€” 2025-11-08 05:52:39
h*t*o*g*l*a*h*r.com βœ… β€” 2025-11-08 05:51:39
h*g*v*l*e*.com βœ… β€” 2025-11-08 05:39:24
g*p*r*.com βœ… β€” 2025-11-07 21:35:50
g*t*o*k*l*c*g*n*u*.com βœ… β€” 2025-11-07 21:09:50
g*s*a*t*l*.com βœ… β€” 2025-11-07 20:52:42
g*n*l*g.com βœ… β€” 2025-11-07 20:30:36
f*i*g*e*i*.com βœ… β€” 2025-11-07 18:41:55
f*e*d*m*a*o*.com βœ… β€” 2025-11-07 18:24:24
f*a*k*t*s*l*t*o*s.com βœ… β€” 2025-11-07 18:14:54
f*a*c*-*o*f*n*.com βœ… β€” 2025-11-07 18:12:49
f*a*c*-*t*l*n*.com βœ… β€” 2025-11-07 18:09:15
f*r*u*h*t*m*a*b*r*h.com βœ… β€” 2025-11-07 17:47:43
f*r*u*.com βœ… β€” 2025-11-07 17:46:16
f*r*f*n*t*o*c*i*i*.com βœ… β€” 2025-11-07 17:45:14
f*r*v*r*i*e*a*d*.com βœ… β€” 2025-11-07 17:40:25
e*a*y*e.com βœ… β€” 2025-11-07 11:28:34
e*e*s*n*r*n*s.com βœ… β€” 2025-11-07 11:09:13
e*g*-*i*s*l*t*o*.com βœ… β€” 2025-11-07 09:39:07

Top 50 Plugins

Plugin Count
elementor 2,610,282
contact-form-7 2,337,644
elementor-pro 1,466,093
woocommerce 1,223,104
revslider 876,684
js_composer 572,075
jetpack 492,222
wp-rocket 416,628
essential-addons-for-elementor-lite 395,134
header-footer-elementor 338,692
gutenberg-core 324,845
elementskit-lite 318,307
instagram-feed 298,589
gravityforms 297,893
google-analytics-for-wordpress 296,326
google-site-kit 287,278
complianz-gdpr 285,637
cookie-law-info 281,352
sitepress-multilingual-cms 248,177
wpforms-lite 238,039
bluehost-wordpress-plugin 233,662
astra-sites 230,472
litespeed-cache 208,332
gtranslate 174,637
coblocks 166,711
cookie-notice 164,421
gutenberg 161,748
the-events-calendar 144,897
popup-maker 136,627
premium-addons-for-elementor 127,956
astra-addon 127,895
bb-plugin 127,337
mailchimp-for-wp 124,297
LayerSlider 123,244
wp-smushit 121,831
tablepress 117,305
creame-whatsapp-me 113,186
custom-fonts 111,825
pro-elements 109,681
duracelltomi-google-tag-manager 108,630
click-to-chat-for-whatsapp 107,419
woocommerce-gateway-stripe 107,358
cleantalk-spam-protect 105,299
akismet 103,125
smart-slider-3 102,017
honeypot 100,700
megamenu 100,333
pixelyoursite 99,994
fusion-builder 99,480
formidable 95,673

Top 50 Themes

Theme Count
hello-elementor 839,023
astra 689,331
Divi 688,815
pub 216,748
generatepress 157,433
flatsome 156,461
Avada 150,237
h4 132,621
oceanwp 115,095
kadence 102,323
enfold 87,699
salient 84,687
bb-theme 81,307
twentytwentyfour 78,539
blocksy 76,160
twentytwentyfive 74,865
cocoon-master 72,462
betheme 69,466
twentyseventeen 67,865
woodmart 57,177
dt-the7 57,157
neve 50,179
twentytwentyone 43,364
bridge 42,676
Avada-Child-Theme 39,119
swell 38,644
twentytwenty 37,532
gox 36,812
lightning 36,811
twentytwentythree 35,835
bricks 30,482
Impreza 30,440
Newspaper 28,223
twentytwentytwo 27,764
epik-redesign 23,800
extendable 22,930
pro 22,929
storefront 22,793
uncode 22,342
twentysixteen 21,929
yith-wonder 21,662
sydney 20,796
themify-ultra 20,173
Total 18,592
twentyfifteen 18,182
porto 17,103
hestia 16,520
thrive-theme 15,743
yootheme 15,443
twentynineteen 15,189