Ajax Updates |
- Enable Mouse Gestures With jQuery
- Flexible Modal Windows With jQuery Superbox!
- TypeSelect: Selectable Custom Texts With JS
- JavaScript-Based Presentations: WebSlide
| Enable Mouse Gestures With jQuery Posted: 22 Nov 2009 04:55 PM PST jQuery Fancy Gestures is a plugin for enabling mouse gestures on any website. Using the plugin, you can accept inputs similar to smartphones, create a captcha where users will need to draw a text & more (totally up to your imagination). Create a new html file with the following code. The function will return data i.e. the recognized character/symbol/name: <div id="sample" style="border:1px solid black;position:relative;height:150px;width:150px;"></div> <script type="text/javascript" src="wz_jsgraphics.js"></script> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.fancygestures.js"></script> <script> $(document).ready(function () { $('#sample').fancygestures(function (data) { alert(data); }); }); </script> Customization Please use the key below to generate a string of numbers for your gesture: e.g. L will be something like 2 then 0. The following letters are already mapped into the script: gestures["CIRCLE"] = "432107654"; The above code will return "CIRCLE" as data in the function when you make a circle. However, make sure you do not have similar gestures, or you will get unpredictable results e.g. having same gesture for zero and letter O. ![]() Related Listings:
| |||||
| Flexible Modal Windows With jQuery Superbox! Posted: 22 Nov 2009 04:50 PM PST jQuery Superbox! is a jQuery plugin for creating easily customizable modal windows (lightbox-like). It is an accessible script, uses the rel attribute of an element for triggering & href attribute is used for defining the source to be displayed. To change the look & feel, it is enough to play with the CSS as no styles are set by default. Dimensions of the modal window can be choosen to resize automatically according to the content or width & height can be defined for a standard size. ![]() Related Listings:
| |||||
| TypeSelect: Selectable Custom Texts With JS Posted: 22 Nov 2009 04:46 PM PST TypeSelect is a JavaScript-based solution for using selectable custom fonts on the web. It combines the power of typeface.js, jQuery, the canvas, toDataURL, CSS background properties & real overlayed text to accomplish this feature. It has support for double/triple-click selections, UTF-8 characters & gracefully degrades in IE6. On the other hand, currently, it has some limitations like unselectable text in IE, not being able to use :hover or line breaks & few more. ![]() Related Listings:
| |||||
| JavaScript-Based Presentations: WebSlide Posted: 22 Nov 2009 04:32 PM PST WebSlide is a free & JavaScript-based application for displaying/presenting images easily. Mostly, it is built for viewing website design mockups which is very handy for freelancers & web agencies. Images can be zoomed in/out & moved by drag'n drops. Optionally, presentations can be protected with passwords. WebSlide does not have any server-side requirements & can be installed in minutes. ![]() Related Listings:
|
| You are subscribed to email updates from Ajax Updates To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
| Google Inc., 20 West Kinzie, Chicago IL USA 60610 | |



0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.