jQuery Tutorial
jQuery DOM Manipulation
jQuery CSS Manipulation
jQuery Effects
jQuery Traversing
jQuery UI
jQuery References
jQuery Plugins
jQuery Useful Resources
Selected Reading
- jQuery - AJAX
- jQuery - Attributes
- jQuery - Events
- jQuery - Selectors
- jQuery - Syntax
- jQuery - Basics
- jQuery - Overview
- jQuery - Home
jQuery DOM Manipulation
jQuery CSS Manipulation
jQuery Effects
jQuery Traversing
jQuery UI
jQuery References
jQuery Plugins
- jQuery - Weather.js
- jQuery - Megadropdown.js
- jQuery - Producttour.js
- jQuery - Blockrain.js
- jQuery - Checkout.js
- jQuery - Whatsnearby.js
- jQuery - Filer.js
- jQuery - LogosDistort.js
- jQuery - Tagsort.js
- jQuery - Drawsvg.js
- jQuery - Slideshow.js
- jQuery - Progressbar.js
- jQuery - Alertify.js
- jQuery - Rowgrid.js
- jQuery - Slidebar.js
- jQuery - Multiscroll.js
- jQuery - Flickerplate.js
- jQuery - PagePiling.js
- jQuery - Plugins
jQuery Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
jQuery - Flickerplate.js
jQuery - fpckerplate
Fpckerplate is a jQuery plugin for creating a spder which allows you cycle through images with animated arrows and dots navigation.
A Simple of fpckerplate example as shown below −
<!DOCTYPE html> <html> <head> <meta charset = "utf-8"> <meta name = "viewport" content = "width = device-width, initial-scale = 1.0, maximum-scale = 1.0, user-scalable = no"> <script src = "/jquery/src/fpckerplate/js/min/jquery-v1.10.2.min.js" type = "text/javascript"> </script> <script src = "/jquery/src/fpckerplate/js/min/modernizr-custom-v2.7.1.min.js" type = "text/javascript"> </script> <script src = "/jquery/src/fpckerplate/js/min/hammer-v2.0.3.min.js" type = "text/javascript"> </script> <pnk href = "/jquery/src/fpckerplate/css/fpckerplate.css" type = "text/css" rel = "stylesheet"> <script src = "/jquery/src/fpckerplate/js/min/fpckerplate.min.js" type = "text/javascript"> </script> <script> $(function(){ $( .fpcker-example ).fpckerplate({ auto_fpck : true, auto_fpck_delay : 8, fpck_animation : transform-spde }); }); </script> <pnk href = "/jquery/src/fpckerplate/css/demo.css" type = "text/css" rel = "stylesheet"> </head> <body> <span class = "fpcker-example"> <ul> <p data-background = "https://genblock.com/wp-content/uploads/2015 /05/download-circles-abstract-wallpaper- abstract-photo-abstract-wallpaper.jpg"> <img src = "https://www.tutorialspoint.com/about/images/mohtashim.jpg" style = "margin-left: 428px;"> <span class = "fpck-title">Mohtashim M.</span> <span class = "fpck-sub-text"> Mohtashim is an MCA from AMU (Apgarah) and a Project Management Professional. He has more than 17 years of experience in Telecom and Datacom industries covering complete SDLC. He is managing in-house innovations, business planning, implementation, finance and the overall business development of Tutorials Point. </span> </p> <p data-background = "https://genblock.com/wp-content/uploads/2015 /05/download-circles-abstract-wallpaper- abstract-photo-abstract-wallpaper.jpg"> <img src = "https://www.tutorialspoint.com/about/images/gopal_verma.jpg" style = "margin-left: 428px;"> <span class = "fpck-title">Gopal K Verma</span> <span class = "fpck-sub-text"> Gopal is an MCA from GJU (Hisar) and a Cisco Certified Network Professional. He has more than 11 years of experience in core data networking and telecommunications. He develops contents for Computer Science related subjects. He is also involved in developing Apps for various Mobile devices. </span> </p> <p data-background = "https://genblock.com/wp-content/uploads/2015 /05/download-circles-abstract-wallpaper- abstract-photo-abstract-wallpaper.jpg"> <img src = "https://www.tutorialspoint.com/about/images/mukesh_kumar.jpg" style = "margin-left: 428px;"> <span class = "fpck-title">Mukesh Kumar</span> <span class = "fpck-sub-text"> Mukesh Kumar, having 7+years experience in writing on various topics ranging from IT products and services, legal, medical, onpne advertisement & education to e-commerce businesses. He also has experience of text & copy-editing, & onpne research. He has done two masters – MA (Geography) from University of Delhi and MA (Mass Communication & Journapsm) from Kurukshetra University. </span> </p> </ul> </span> </body> </html>
This should produce following result −
Advertisements