Best Html, Css, jquery tutorials, Best jquery plugins, cool effects with jquery examples, demo, demos for beginners, designers, developers. jQuery Plugin Tutorial with example. On www.htmluse.com
Ads
Friday, 30 January 2015
Thursday, 29 January 2015
svg Path Animation
svgPathAnimation is a jQuery function for animating SVG multiple path synchronously
1. INCLUDE JS FILES
<script src= "jquery.js" ></script> <script src= "../svg.min.js" ></script> |
2. HTML
<svg width= "100" height= "100" id= "example1" ></svg> |
3. JAVASCRIPT
var example_one = new SvgAnimation({ "elem" : "#example1" , "increaseBy" : 1, "timeout" : 10 }); example_one.animate(); |
4. OPTIONS
var svgAnimSettings = { "elem" : "#svg-circle" , "increaseBy" : 3, "timeout" : 1, "reverse" : true }; |
Morphing Modal Window
Morphing Modal Window is a call-to-action button that animates and turns into a full-size modal window.
Modal windows are used to display related content, by hiding temporarily the main content. If we imagine our web page as layers distributed along the z-axis, modal windows are on top.
With this nugget we wanted to spice-up the way we fire the modal window: the button that triggers the action animates and turns into a full-width new page. We tried something similar with the product quick view nugget.
The final result is powered by a combination of CSS transition and transformations, jQuery and Velocity.
Insignia – Customizable tag input
Insignia - Customizable tag input. Progressive. No non-sense!
Browser support includes every sane browser and IE7+.
Inspiration
I needed a tag input that was progressively enhanced, fast, easy to use, and reliable. Tag inputs I stumbled upon were too bloated, too dependant on JavaScript, or provided an unfriendly human experience.
The goal is to produce a framework-agnostic tag input editor that is easily integrated into your favorite MVC framework, that doesn’t translate into a significant addition to your codebase.
Features
- Small and focused
- Natural keyboard navigation
- Progressively enhanced
- Extensive browser support
Tuesday, 27 January 2015
Friday, 23 January 2015
BlinkTitle.js
BlinkTitle.js is a Pure Javascript Implementation of TitleBar Alert or Notification.It Can Perform Blinking of Html Titlebar When Required.
1. INCLUDE JS FILE
<script type= "text/javascript" src= "https://raw.githubusercontent.com/argunner/blinkTitle.js/master/index.js" ></script> |
2. JAVASCRIPT
Regular Blink
blinkTitle('message1','message2',delayTime,false);
If You Want Notify When User is On Other Tab
blinkTitle('message1','message2',delayTime,true);
Stop
blinkTitleStop();
Responsive 3D Fold Animation on Scroll
Responsive 3D Fold Animation on scroll, very easy to use.
1. INCLUDE JS FILES
<script src= "includes/js/responsive_3dfoldscroll.js?v=1" ></script> |
2. JAVASCRIPT
$( document ).ready( function () { window.onload= function (){ var fold = $.fn.responsive_3dfoldscroll({ animationLength : 1500 }); }; }); |
Subscribe to:
Posts (Atom)