Вход Регистрация
Файл: public_html/admin/vendors/jGrowl/examples/jgrowl.html
Строк: 335
<?php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml" debug="true">
    <
head>
        <
title>jGrowl Tests</title>
        <
link rel="stylesheet" href="../jquery.jgrowl.css" type="text/css"/>
        <
style type="text/css">

            
div.jGrowl div.manilla {
                
background-color:         #FFF1C2;
                
color:                     navy;
            }
            
            
div.jGrowl div.smoke {
                
backgroundurl(smoke.pngno-repeat;
                -
moz-border-radius:     0px;
                -
webkit-border-radius:    0px;
                
width:                     280px;
                
height:                 55px;
                
overflow:                 hidden;
            }

            
div.jGrowl div.flora {
                
background:             #E6F7D4 url(flora-notification.png) no-repeat;
                
-moz-border-radius:     0px;
                -
webkit-border-radius:    0px;
                
opacity:                 1;
                
filter:                 alpha(opacity 100);
                
width:                     270px;
                
height:                 90px;
                
padding:                 0px;
                
overflow:                 hidden;
                
border-color:             #5ab500;
            
}

            
div.jGrowl div.flora div.message {
                
padding:                 5px;
                
color:                     #000;
            
}
            
            
div.jGrowl div.flora div.header {
                
background:             url(flora-header.pngno-repeat;
                
padding:                 5px;
            }

            
div.jGrowl div.flora div.close {
                
background:             url(flora-close.pngno-repeat;
                
padding:                 5px;
                
color:                     transparent;
                
padding:                 0px;
                
margin:                 5px;
                
width:                    17px;
            }
            
            
div.jGrowl div.iphone {
                
font-family:             "Helvetica Neue""Helvetica";
                
font-size:                 12px;
                
background:             url(iphone.pngno-repeat;
                -
moz-border-radius:     0px;
                -
webkit-border-radius:    0px;
                
opacity:                 .90;
                
filter:                 alpha(opacity 90);
                
width:                     235px;
                
height:                 137px;
                
overflow:                 hidden;
                
border-color:             #5ab500;
                
color:                     #fff;
            
}

            
div.jGrowl div.iphone .jGrowl-close {
                
padding-right:             20px;
            }

            
div.jGrowl div.iphone div.message {
                
padding-top:             0px;
                
padding-bottom:         7px;
                
padding-left:             15px;
                
padding-right:             15px;
            }
            
            
div.jGrowl div.iphone div.header {
                
padding:                 7px;
                
padding-left:             15px;
                
padding-right:             15px;
                
font-size:                 17px;
            }

            
div.jGrowl div.iphone div.close {
                
display:                 none;
            }
            
            
div#random {
                
width:                     1000px;
                
background-color:         red;
                
line-height:             60px;
            }

        </
style>
        <
script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
        <
script type="text/javascript" src="../jquery.jgrowl.js"></script>
        <
script type="text/javascript">

        
// In case you don't have firebug...
        
if(typeof console === "undefined") {
            
console = { log: function() { } };
        }

        (function($){

            $(
document).ready(function(){
                
// This value can be true, false or a function to be used as a callback when the closer is clciked
                
$.jGrowl.defaults.closer = function() {
                    
console.log("Closing everything!"this);
                };
                
                
// A callback for logging notifications.
                
$.jGrowl.defaults.log = function(e,m,o) {
                    $(
'#logs').append("<div><strong>#" + $(e).attr('id') + "</strong> <em>" + (new Date()).getTime() + "</em>: " " (" o.theme ")</div>")
                }                
                
                $.
jGrowl("Hello world!");
                $.
jGrowl("This notification will live a little longer.", { life1000 });
                $.
jGrowl("Sticky notification with a header", { header'A Header'stickytrue });
                $.
jGrowl("Custom theme, and a whole bunch of callbacks...", { 
                    
theme:  'manilla',
                    
speed:  'slow',
                    
beforeOpen: function(e,m,o) {
                        
console.log("I am going to be opened!"this);
                    },
                    
open: function(e,m,o) {
                        
console.log("I have been opened!"this);
                    },
                    
beforeClose: function(e,m,o) {
                        
console.log("I am going to be closed!"this);
                    },
                    
close: function(e,m,o) {
                        
console.log("I have been closed!"this);
                    }
                });

                $.
jGrowl("Custom animation test...", { 
                    
theme'manilla',
                    
speed'slow',
                    
animateOpen: { 
                        
height"show"
                    
},
                    
animateClose: { 
                        
height"hide"
                    
}
                });
                
                $.
jGrowl("Looks like the iPhone.", { 
                    
stickytrue,
                    
header'iPhone',
                    
theme'iphone'
                
});
                

                $.
jGrowl("This message will not open because we have a callback that returns false.", {
                    
beforeOpen: function() {
                        
console.log("Going to open a notification, but not really...");
                    },
                    
open: function() {
                        return 
false;
                    }
                });
                
                $.
jGrowl("This message will not close because we have a callback that returns false.", {
                    
beforeClose: function() {
                        return 
false;
                    }
                });
                
                $.
jGrowl.defaults.closerTemplate '<div>hide all notifications</div>';
                
                $(
'#test1').jGrowl("Testing a custom container (this one is sticky, and will also be prepended).", {
                    
closerfalse,
                    
stickytrue
                    
glue'before',
                    
speed2000,
                    
animateOpen: { 
                        
height"show",
                        
width"show"
                    
},
                    
animateClose: { 
                        
height"hide",
                        
width"show"
                    
}
                });

                $(
'#test1').jGrowl("Another custom container test.", { 
                    
glue'before',
                    
speed2000,
                    
animateOpen: { 
                        
height"show",
                        
width"show"
                    
},
                    
animateClose: { 
                        
height"hide",
                        
width"show"
                    
}
                });
                
                $(
'#test2').jGrowl("Trying a background image.", { 
                    
theme'smoke',
                    
closerfalse
                
});
            });
        })(
jQuery);

        </
script>
    </
head>
    <
body>
        <
h1>jGrowl Tests</h1>

        <
p><a href="javascript:void(0);" onclick="$.jGrowl('One more message...');">Click here to create a message on demand in the #jGrowl container in the top-right corner of the screen.</a></p>
        
        
<p><a href="javascript:void(0);" onclick="$('#test1').jGrowl('shutdown');">Shutdown jGrowl for the #test1 container in the top-left corner of the screen.</a></p>
        
        
<p><a href="javascript:void(0);" onclick="$('#test1').jGrowl('close');">Close all in #test1.</a></p>
        
        
<div id="random">An extra wide nodewatch as the jGrowl containers stay put in the corners of the screen..</div>

        <
div id="logs"><h3>Log:</h3></div>
        
        <
hr />
                
        <
p>Lorem ipsum dolor sit ametconsectetuer adipiscing elitNullam porttitor turpis eu semPhasellus pulvinarpurus eget euismod imperdietquam est sollicitudin nislsed vulputate urna magna vel risusAliquam erat volutpatUt nulla misagittis aegestas utauctor vitaenullaSed ut metus vel tellus scelerisque dictumSuspendisse felis odioeleifend afeugiat ainterdum egetloremAliquam facilisisNulla neque enimbibendum vitaeconvallis vitaepretium afelisNunc diam sapieniaculis sedvestibulum inpellentesque atellusMauris molestie risus non lectusIn a arcuEtiam pulvinarnibh et imperdiet egestasdiam pede lobortis risusac facilisis justo mauris eu ipsumAliquam nibh tortorvenenatis eupretium atcondimentum nonenimInteger vitae urnaDuis sempermauris ac egestas tristiquequam ipsum viverra risuseget tempor libero turpis id nislFusce pedeNam varius.</p>

        <
p>Phasellus placerat suscipit nequeIn porttitor mi vel felisSed vel anteVestibulum lectus maurisullamcorper idluctus vitaemolestie ametusFusce eu diam in libero fermentum sagittisQuisque eget mi non purus convallis dignissimNam id lectusMaecenas sit amet massa id metus hendrerit euismodPhasellus porta tempor odioAliquam erat volutpatSed ut quam a dolor fermentum vehiculaNulla et metusNulla ornare lorem sed augueNulla urnaDonec ligulaNulla blandit ultrices pede.</p>

        <
p>Etiam blandit scelerisque diamDonec nisl orciaccumsan sedsodales veldictum acmaurisAliquam non nunc eget magna imperdiet condimentumNunc semEtiam tinciduntQuisque eros tortorultricies atcondimentum sit ametfeugiat vellectusMorbi quis enim a ligula tristique consequatPraesent nec massa nec urna cursus pretiumPhasellus porttitorIn adipiscingMorbi ultrices.</p>

        <
p>Cras eget elitDuis placerat diam in sapienDuis temporSed tincidunt semper augueNam varius gravida anteEtiam ultricies iaculis nequeNam laciniaaugue eget commodo auctorpede lorem lacinia leoeu rhoncus est purus nec ligulaSed congue feugiat semNulla bibendumpurus et sodales dignissimelit mauris pulvinar turpisa pulvinar sem diam a magnaSuspendisse ut purus sit amet felis suscipit lobortisLorem ipsum dolor sit ametconsectetuer adipiscing elitVestibulum pharetra dictum nislFusce odio metustempor apretium velultrices quisantePellentesque ut purus sit amet mi mattis volutpat.</p>

        <
p>Maecenas eu elitNam gravidaIn leoMorbi ante estbibendum utpulvinar idrhoncus velnislNunc purusPraesent nec nislVivamus accumsan eleifend leoInteger a enim non dolor convallis sagittisPhasellus vel turpisPhasellus pulvinar lectus eu sapien sollicitudin pharetraIn sollicitudin porttitor turpisDonec feugiatodio id egestas iaculislacus odio sagittis justoa pharetra sem nunc eget orciDonec ipsum nibhfringilla sedimperdiet idvehicula eumiPellentesque tincidunt sodales diamPellentesque pede doloraccumsan sit ametdictum etposuere eudiamNulla lacinia turpis et nequeUt ut auguePhasellus ut metusNam in tellus.</p>
        
        <
div id="test1" class="top-left"></div>
        <
div id="test2" class="bottom-left"></div>
    </
body>
</
html>
?>
Онлайн: 1
Реклама