
- jQuery Tutorial
- jQuery - Home
- jQuery - Overview
- jQuery - Basics
- jQuery - Syntax
- jQuery - Selectors
- jQuery - Events
- jQuery - Attributes
- jQuery - AJAX
- jQuery DOM Manipulation
- jQuery - DOM
- jQuery - Add Elements
- jQuery - Remove Elements
- jQuery - Replace Elements
- jQuery CSS Manipulation
- jQuery - CSS Classes
- jQuery - Dimensions
- jQuery - CSS Properties
- jQuery Traversing
- jQuery - Traversing
- jQuery - Traversing Ancestors
- jQuery - Traversing Descendants
- jQuery References
- jQuery - Utilities
- jQuery Plugins
- jQuery - Plugins
- jQuery - PagePiling.js
- jQuery - Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
- jQuery Useful Resources
- jQuery - Questions and Answers
- jQuery - Quick Guide
- jQuery - Useful Resources
- jQuery - Discussion
jQuery - Logosdistort.js
Logosdistort.js is a jQuery plugin for quickly and easily implementing of mouse over effect on images
A Simple of logosdistort example as shown below −
<!DOCTYPE html> <html> <head> <meta name = "viewport" content = "width = device-width, initial-scale = 1.0"> <link rel = "stylesheet" href = "//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> <link href = "assets/css/style.css" rel = "stylesheet" /> <link href = "assets/css/perspectiveRules.css" rel = "stylesheet" /> </head> <body> <div id = "min-max-tag"><i class = "fa fa-chevron-circle-left"></i></div> <div id = "demo1"> <div id = "particle-target" ></div> <img alt = "logo" src = "assets/images/logo.png" /> </div> <script src = "https://www.tutorialspoint.com/jquery/jquery-3.6.0.js"> </script> <script src = "assets/js/jquery.logosDistort.min.js"></script> <script src = "assets/js/jquery.particleground.min.js"></script> <script> var particles = true, particleDensity, options = { effectWeight: 1, outerBuffer: 1.08, elementDepth: 220 }; $(document).ready(function() { $("#demo1").logosDistort(options); if (particles) { particleDensity = window.outerWidth * 7.5; if (particleDensity < 13000) { particleDensity = 13000; } else if (particleDensity > 20000) { particleDensity = 20000; } return $('#particle-target').particleground({ dotColor: '#1ec5ee', lineColor: '#0a4e90', density: particleDensity.toFixed(0), parallax: false }); } }); </script> </body> </html>
This should produce following result −
Click hereAdvertisements
To Continue Learning Please Login