Results 1 to 2 of 2
-
31st Dec 2010, 04:26 PM #1OPMember
[Jquery] Visually Appealing Notifications - Happy New Year !
PHP Code:<html>
<head>
<title>Jquery- Display Notifications with close option - Desiboy @ besthostingforums.com</title>
<link href=' http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<style type="text/css">
#notify {
font-family: 'Droid Sans', arial, serif;
position:fixed;
top:0px;
left:0px;
width:100%;
z-index:105;
text-align:center;
font-weight:normal;
font-size:100%;
color:#000;
background-color:#66615E;
padding:5px;
}
#notify span.close {
border:2px solid #FFF;
padding:0 5px;
cursor:pointer;
float:right;
margin-right:10px;
}
#notify a {
color:white;
text-decoration:none;
font-weight:bold
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#notify").fadeIn("slow");
$(".close").click(function(){
$("#notify").fadeOut("slow");
});
});
</script>
</head>
<body>
<div id="notify" style="display: none;">
CDNPIC Wishes All It's Users A HAPPY NEW YEAR 2011 !
<span class="close"><a title="dismiss this notification">x</a></span>
</div>
</body>
</html>
desiboy Reviewed by desiboy on . [Jquery] Visually Appealing Notifications - Happy New Year ! http://i.imgur.com/qcBdW.png <html> <head> <title>Jquery- Display Notifications with close option - Desiboy @ besthostingforums.com</title> <link href=' http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'> <style type="text/css"> #notify { font-family: 'Droid Sans', arial, serif; Rating: 5Coding Horror Fan
I don't read PM's frequently .
-
2nd Jan 2011, 01:58 PM #2
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Happy New Year
By applekid in forum IntroductionsReplies: 0Last Post: 3rd Jan 2012, 12:13 AM -
Happy New Year To All Members
By indianmoviefans.info in forum General DiscussionReplies: 4Last Post: 31st Dec 2011, 09:36 PM -
Merry Christmas | Happy Holidays | Happy New Year!
By MsJacquiiC in forum General DiscussionReplies: 12Last Post: 24th Dec 2011, 01:34 PM -
[Linux] Creating Visually Appealing Notifications
By desiboy in forum Web Development AreaReplies: 2Last Post: 15th Jun 2010, 02:46 PM -
Happy New Year From Raven
By Raven Faust in forum General DiscussionReplies: 10Last Post: 1st Jan 2010, 09:40 PM
themaCreator - create posts from...
Version 3.50 released. Open older version (or...