`
乌托邦之爱
  • 浏览: 277888 次
  • 性别: Icon_minigender_1
  • 来自: 沈阳
社区版块
存档分类
最新评论

jQuery Alert contform 弹出提示对话框美化插件

阅读更多

jquery美化的填出提示对话框美化插件

 

调用页面:

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>JQuery插件:alert、confirm、prompt对话框插件-Download by http://www.jb51.net</title>
<style type="text/css">
   BODY,
   HTML {
    padding: 0px;
    margin: 0px;
   }
   BODY {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    background: #FFF;
    padding: 15px;
   }
   
   H1 {
    font-size: 20px;
    font-weight: normal;
   }
   
   H2 {
    font-size: 16px;
    font-weight: normal;
   }
   
   FIELDSET {
    border: solid 1px #CCC;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    padding: 1em 2em;
    margin: 1em 0em;
   }
   
   LEGEND {
    color: #666;
    font-size: 16px;
    padding: 0em .5em;
   }
   
   PRE {
    font-family: "Courier New", monospace;
    font-size: 11px;
    color: #666;
    background: #F8F8F8;
    padding: 1em;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
   }
   
   /* Custom dialog styles */
   #popup_container.style_1 {
    font-family: Georgia, serif;
    color: #A4C6E2;
    background: #005294;
    border-color: #113F66;
   }
   
   #popup_container.style_1 #popup_title {
    color: #FFF;
    font-weight: normal;
    text-align: left;
    background: #76A5CC;
    border: solid 1px #005294;
    padding-left: 1em;
   }
   
   #popup_container.style_1 #popup_content {
    background: none;
   }
   
   #popup_container.style_1 #popup_message {
    padding-left: 0em;
   }
   
   #popup_container.style_1 INPUT[type='button'] {
    border: outset 2px #76A5CC;
    color: #A4C6E2;
    background: #3778AE;
   }
   
  </style>
  
  <!-- Dependencies -->
  <script src="jquery.js" type="text/javascript"></script>
  <script src="jquery.ui.draggable.js" type="text/javascript"></script>
  
  <!-- Core files -->
  <script src="jquery.alerts.js" type="text/javascript"></script>
  <link href="jquery.alerts.css" rel="stylesheet" type="text/css" media="screen" />
  
  <!-- Example script -->
  <script type="text/javascript">
   
   $(document).ready( function() {
    
    $("#alert_button").click( function() {
     jAlert('This is a custom alert box', 'Alert Dialog');
    });
    
    $("#confirm_button").click( function() {
     jConfirm('Can you confirm this?', 'Confirmation Dialog', function(r) {
      jAlert('Confirmed: ' + r, 'Confirmation Results');
     });
    });
    
    $("#prompt_button").click( function() {
     jPrompt('Type something:', 'Prefilled value', 'Prompt Dialog', function(r) {
      if( r ) alert('You entered ' + r);
     });
    });
    
    $("#alert_button_with_html").click( function() {
     jAlert('You can use HTML, such as <strong>bold</strong>, <em>italics</em>, and <u>underline</u>!');
    });
    
    $(".alert_style_example").click( function() {
     $.alerts.dialogClass = $(this).attr('id'); // set custom style class
     jAlert('This is the custom class called &ldquo;style_1&rdquo;', 'Custom Styles', function() {
      $.alerts.dialogClass = null; // reset to default
     });
    });
   });
   
  </script>
  
 </head>
 
 <body>
  
  <h1>&laquo; jQuery Alert Dialogs (Alert, Confirm, &amp; Prompt Replacements)</h1>
  
  <h2>基本范例</h2>
  
  <fieldset>
   <legend>Alert</legend>
<pre>
jAlert('This is a custom alert box', 'Alert Dialog');
</pre>
   <p>
    <input id="alert_button" type="button" value="Show Alert" />
   </p>
  </fieldset>
  
  
  <fieldset>
   <legend>Confirm</legend>
<pre>
jConfirm('Can you confirm this?', 'Confirmation Dialog', function(r) {
    jAlert('Confirmed: ' + r, 'Confirmation Results');
});
</pre>
   <p>
    <input id="confirm_button" type="button" value="Show Confirm" />
   </p>
  </fieldset>
  
  <fieldset>
   <legend>Prompt</legend>
<pre>
jPrompt('Type something:', 'Prefilled value', 'Prompt Dialog', function(r) {
    if( r ) alert('You entered ' + r);
});
</pre>
   <p>
    <input id="prompt_button" type="button" value="Show Prompt" />
   </p>
  </fieldset>
  
  
  
  <h2>高级范例</h2>
  <fieldset>
   <legend>对话框带HTML代码</legend>
<pre>
jAlert('You can use HTML, such as <strong>bold</strong>, <em>italics</em>, and <u>underline</u>!');
</pre>
   <p>
    <input id="alert_button_with_html" type="button" value="Show Alert" />
   </p>
  </fieldset>
  
  <fieldset>
   <legend>Alternate Styles</legend>
   <p>
    By changing the value of the <samp>$.alerts.dialogClass</samp> property (and creating
    your own CSS class), you can changes the style of your dialogs:
   </p>
   
   <p>
    <input id="style_1" class="alert_style_example" type="button" value="Style 1" />
   </p>
   
   <p>
    View the plugin source for additional properties that can be modifed at runtime.
   </p>
  </fieldset>
</body>
</html>

 

分享到:
评论
7 楼 kongzhizhen 2010-10-26  
赞一个,建议加上遮罩的效果吧。
6 楼 xuzhoudeliujin 2010-10-24  
希望多出精品!!
5 楼 cloudgamer 2010-10-21  
这个在ie6不会随屏移动
我这里有一个可以随屏移动的弹出框效果
4 楼 grossofans 2010-10-20  
用jQuery Impromptu不要自己造车子啦
http://trentrichardson.com/Impromptu/index.php
3 楼 小碗拉面加蛋 2010-10-20  
http://abeautifulsite.net/blog/2008/12/jquery-alert-dialogs/
开发者博客在这里
2 楼 surfire91 2010-10-19  
又看了下代码,遮盖层是有的。
1 楼 surfire91 2010-10-19  
我看了下,还不错。就是不知道有没有遮罩层。

相关推荐

Global site tag (gtag.js) - Google Analytics