Mark Forums Read
  #1  
Old 04-26-2011, 02:55 AM
JavaScriptBank JavaScriptBank is offline
Senior Member
 
Join Date: Sep 2009
Posts: 130
JavaScriptBank is on a distinguished road
Default Nice AJAX Effects for Messages Box using MooTools

This is very simple JavaScript code example but it can create an amazing message box effect with AJAX operations, bases on ... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup

Step 1: Use CSS code below for styling the script
CSS
Code:
<style type="text/css"> body{font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif; font-size:12px;} #box { margin-bottom:10px; width: auto; padding:4px; border:solid 1px #DEDEDE; background: #FFFFCC; display:none; } </style>
Step 2: Place JavaScript below in your HEAD section
JavaScript
Code:
<script type="text/javascript" src="mootools.js"></script> <script type="text/javascript"> // Created by Antonio Lupetti | http://woork.blogspot.com // This script downloaded from www.JavaScriptBank.com window.addEvent('domready', function(){ var box = $('box'); var fx = box.effects({duration: 1000, transition: Fx.Transitions.Quart.easeOut}); $('save_button').addEvent('click', function() { box.style.display="block"; box.setHTML('Save in progress...'); /* AJAX Request here... */ fx.start({ }).chain(function() { box.setHTML('Saved!'); this.start.delay(1000, this, {'opacity': 0}); }).chain(function() { box.style.display="none"; this.start.delay(0001, this, {'opacity': 1}); }); }); }); </script>
Step 3: Copy & Paste HTML code below in your BODY section
HTML
Code:
Press &quot;Save&quot;</p> <div id="box"></div> <input name="" type="text" /><input id="save_button" name="save_button" type="button" value="save"/>
Step 4: Download files below
Files
mootools.js






Reply With Quote
 #Add to Ads's Reputation  
OldSponsored Ads
Ads AdsPromoter is online
Member
 
Join Date: LongTime
Posts: 1100
Ads is on a distinguished road
Default New Sponsored Ads



This message will go away once you are registered. Also, by registering, you will have access to all post topics, communicate privately with other members (PM), respond to polls, upload graphics, and access other special features! Registration is fast, simple and absolutely free so please Click Here to join our Web Hosting community today!
Reply With Quote
  #2  
Old 07-18-2011, 06:08 AM
vvhins1 vvhins1 is offline
Junior Member
 
Join Date: Jul 2011
Posts: 5
vvhins1 is on a distinguished road
Default

<style type="text/css">
body{font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif; font-size:12px;}
#box {
margin-bottom:10px;
width: auto;
padding:4px;
border:solid 1px #DEDEDE;
background: #FFFFCC;
display:none;
}
</style>
__________________
funny pictures
Reply With Quote
 #Add to Ads's Reputation  
OldSponsored Ads
Ads AdsPromoter is online
Member
 
Join Date: LongTime
Posts: 1100
Ads is on a distinguished road
Default New Sponsored Ads



This message will go away once you are registered. Also, by registering, you will have access to all post topics, communicate privately with other members (PM), respond to polls, upload graphics, and access other special features! Registration is fast, simple and absolutely free so please Click Here to join our Web Hosting community today!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT. The time now is 06:30 PM.


Powered by vBulletin Version 3.6.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
SEO by vBSEO 2.4.0