91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用CSS3來制作消息提醒框

發布時間:2021-08-03 21:21:07 來源:億速云 閱讀:155 作者:chen 欄目:web開發

本篇內容主要講解“如何使用CSS3來制作消息提醒框 ”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何使用CSS3來制作消息提醒框 ”吧!

現代Web設計技術允許開發者快速實現大多數瀏覽器支持的動畫。我想警告消息是很常見的,因為默認的JavaScript警告框的樣式往往(與你自己設計的漂亮樣式)很不協調很囧。這使開發者步入找出哪種解決方案能更好地實現更友好的用戶界面的道路。

如何使用CSS3來制作消息提醒框
    實際演示 – 下載源代碼

建立頁面

  首先, 我們需要創建兩個文件命名為“index.html” 和 “style.css”. 我將從Google CDN上調用最新的jQuery 庫. HTML是非常簡單的,因為我們只需要在警告框里加入一些文本. 所有的JavaScript代碼被加在了頁面的底部,這樣可以節省HTTP請求時間.

XML/HTML Code復制內容到剪貼板

  1. <!doctype html>  

  2. <html lang="en-US">  

  3. <head>  

  4.   <meta http-equiv="Content-Type" content="text/html;charset=utf-8">  

  5.   <title>CSS3 Notification Boxes Demo</title>  

  6.   <link rel="shortcut icon" href="http://designshack.net/favicon.ico">  

  7.   <link rel="icon" href="http://designshack.net/favicon.ico">  

  8.   <link rel="stylesheet" type="text/css" media="all" href="style.css">  

  9.   <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>  

  10. </head>  

  頭部代碼設置了外部調用文件和 HTML5文檔規范 . 不是很復雜因為我們只是建立一個簡單的示例. 對于提示窗口我定義兩個不同的樣式 &ndash; 成功的和錯誤的. 還有一些其它風格的例如警告框和信息框, 但是我沒有創建更多的,因為我更關注的是效果.

XML/HTML Code復制內容到剪貼板

  1. <div id="content">  

  2.   <!-- Icons source http://dribbble.com/shots/913555-Flat-Web-Elements -->  

  3.   <div class="notify successbox">  

  4.     <h2>Success!</h2>  

  5.     <span class="alerticon"><img src="images/check.png" alt="checkmark" /></span>  

  6.     <p>Thanks so much for your message. We check e-mail frequently and will try our best to respond to your inquiry.</p>  

  7.   </div>  

  8.      

  9.   <div class="notify errorbox">  

  10.     <h2>Warning!</h2>  

  11.     <span class="alerticon"><img src="images/error.png" alt="error" /></span>  

  12.     <p>You did not set the proper return e-mail address. Please fill out the fields and then submit the form.</p>  

  13.   </div>  

  14.      

  15.   <p>Click the error boxes to dismiss with a fading effect.</p>  

  16.      

  17.   <p>Add more by appending dynamic HTML into the page via jQuery. Plus the notifications are super easy to customize.</p>  

  18.      

  19.   <div class="btns clearfix">  

  20.     <a href="#" id="newSuccessBox" class="flatbtn">New Success Box</a>  

  21.     <a href="#" id="newAlertBox" class="flatbtn">New Alert Box</a>  

  22.   </div>  

  23. </div><!-- @end #content -->  

  每個圖標文件來自 免費的PSD 和UI作品. 這些圖標被我調整為適當的大小.如何你需要警告/信息圖標你可以變變顏色創建成你自己的. 這個類名 .notify 被添加到每一個消息DIV上. 它定義了DIV的陰影和字體類型.

  其它的類例如 .successbox 和 .errorbox 充許我們改變顏色和alert窗口里的細節. 你可以看到在我的測試頁里加載了兩個alert窗口. 每個頁面底部的按鈕點擊后可以在頁上下方追加一個新的alert窗口.
 CSS 盒子樣式

  我不會將太多 CSS 重置的細節,那些在我之前的教程中很明了了。我創建了一個默認的排版,并將內置 #content 的div居中。這樣創建了一個允許jQuery在頁面最上面添加新警告元素的盒子區域。

CSS Code復制內容到剪貼板

  1. /** typography **/  

  2. h2 {   

  3.   font-family'Helvetica Neue'HelveticaArialsans-serif;   

  4.   font-size: 2.5em;   

  5.   line-height: 1.5em;   

  6.   letter-spacing: -0.05em;   

  7.   margin-bottom20px;   

  8.   padding: .1em 0;   

  9.   color#444;   

  10.  positionrelative;   

  11.  overflowhidden;   

  12.  whitewhite-spacenowrap;   

  13.  text-aligncenter;   

  14. }   

  15. h1:before,   

  16. h1:after {   

  17.   content"";   

  18.   positionrelative;   

  19.   displayinline-block;   

  20.   width: 50%;   

  21.   height1px;   

  22.   vertical-alignmiddle;   

  23.   background#f0f0f0;   

  24. }   

  25. h1:before {       

  26.   left: -.5em;   

  27.   margin: 0 0 0 -50%;   

  28. }   

  29. h1:after {       

  30.   left: .5em;   

  31.   margin: 0 -50% 0 0;   

  32. }   

  33. h2 > span {   

  34.   displayinline-block;   

  35.   vertical-alignmiddle;   

  36.   whitewhite-spacenormal;   

  37. }   

  38.   

  39. p {   

  40.   displayblock;   

  41.   font-size: 1.35em;   

  42.   line-height: 1.5em;   

  43.   margin-bottom22px;   

  44. }   

  45.   

  46.   

  47. /** page structure **/  

  48. #w {   

  49.   displayblock;   

  50.   width750px;   

  51.   margin: 0 auto;   

  52.   padding-top30px;   

  53. }   

  54.   

  55. #content {   

  56.   displayblock;   

  57.   width: 100%;   

  58.   background#fff;   

  59.   padding25px 20px;   

  60.   padding-bottom35px;   

  61.   -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;   

  62.   -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;   

  63.   box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;   

  64. }   

  65.   

  66. .flatbtn {   

  67.   -webkit-box-sizing: border-box;   

  68.   -moz-box-sizing: border-box;   

  69.   box-sizing: border-box;   

  70.   displayinline-block;   

  71.   outline: 0;   

  72.   border: 0;   

  73.   color#f9f8ed;   

  74.   text-decorationnone;   

  75.   background-color#b6a742;   

  76.   border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);   

  77.   font-size: 1.2em;   

  78.   font-weightbold;   

  79.   padding12px 22px 12px 22px;   

  80.   line-heightnormal;   

  81.   text-aligncenter;   

  82.   vertical-alignmiddle;   

  83.   cursorpointer;   

  84.   text-transformuppercase;   

  85.   text-shadow: 0 1px 0 rgba(0,0,0,0.3);   

  86.   -webkit-border-radius: 3px;   

  87.   -moz-border-radius: 3px;   

  88.   border-radius: 3px;   

  89.   -webkit-box-shadow: 0 1px 0 rgba(15, 15, 15, 0.3);   

  90.   -moz-box-shadow: 0 1px 0 rgba(15, 15, 15, 0.3);   

  91.   box-shadow: 0 1px 0 rgba(15, 15, 15, 0.3);   

  92. }   

  93. .flatbtn:hover {   

  94.   color#fff;   

  95.   background-color#c4b237;   

  96. }   

  97. .flatbtn:active {   

  98.   -webkit-box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);   

  99.   -moz-box-shadow:inset 0 1px 5px rgba(0, 0, 0, 0.1);   

  100.   box-shadow:inset 0 1px 5px rgba(0, 0, 0, 0.1);   

  101. }  

讓效果更醒目的網頁布局非常簡單。任何熟悉前端網頁開發的人都應該能夠將其移植到自己的樣式表中。我在這個扁平按鈕中使用了特殊的樣好似,并生成新的警告窗口。同樣的,我更新了每個 .notify類元素的內部樣式。

CSS Code復制內容到剪貼板

  1. /** notifications **/  

  2. .notify {   

  3.   displayblock;   

  4.   background#fff;   

  5.   padding12px 18px;   

  6.   max-width400px;   

  7.   margin: 0 auto;   

  8.   cursorpointer;   

  9.   -webkit-border-radius: 3px;   

  10.   -moz-border-radius: 3px;   

  11.   border-radius: 3px;   

  12.   margin-bottom20px;   

  13.   box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;   

  14. }   

  15.   

  16. .notify h2 { margin-bottom6px; }   

  17.   

  18. .successbox h2 { color#678361; }   

  19. .errorbox h2 { color#6f423b; }   

  20.   

  21. .successbox h1:before, .successbox h1:after { background#cad8a9; }   

  22. .errorbox h1:before, .errorbox h1:after { background#d6b8b7; }   

  23.   

  24. .notify .alerticon {    

  25.   displayblock;   

  26.   text-aligncenter;   

  27.   margin-bottom10px;   

  28. }  

  我設置了一些在我的布局示例中運行良好的默認假設。所有消息通知窗口都被限定為 400px 寬,并通過使用 margin: 0 auto 在頁面中居中。同時,我更新了鼠標圖標為手指指針,這樣用戶就知道該元素可點擊。我們需要創建一個 jQuery 事件監聽器以用于獲取用戶對取消通知窗口的點擊,并運行相應函數。
 jQuery動畫

  我的JS代碼實際執行了兩個不同的操作。我們首先檢測包含在#content DIV中的任何現有.notify元素。一旦用戶點擊這個.notify框元素,我們需要淡出這個通知盒到透明度為0%(display: none),然后從DOM中移除()此元素。

JavaScript Code復制內容到剪貼板

  1. $(function(){   

  2.   $('#content').on('click''.notify'function(){   

  3.     $(this).fadeOut(350, function(){   

  4.       $(this).remove(); // after fadeout remove from DOM   

  5.     });   

  6.   });  

  如果你熟悉jQuery,可能首先對這個選擇器感到有些奇怪。我們并不是選擇#content這個div,而是在尋找這個內容容器里面的任何.notify通知框。如果你查看一下jQuery的 .on() 方法文檔,你會注意到我們可以傳遞另外一個選擇器來作為第二個參數,它將在頁面被渲染后更新。 這是一個Stack Overflow里出色的帖子,它非常詳細地解釋了這個概念。

  我的腳本的另一部分將會檢查用戶何時點擊了頁面下方的兩個按鈕之一。這兩個按鈕的ID是#newSuccessBox 和 #newAlertBox。無論用戶何時點擊,我們會停止加載HREF值的默認行為,代之以創建一個新的HTML塊并前置在頁面上。

JavaScript Code復制內容到剪貼板

  1. // handle the additional windows   

  2. $('#newSuccessBox').on('click'function(e){   

  3.   e.preventDefault();   

  4.   var samplehtml = $('<div class="notify successbox"> <h2>Success!</h2> <span class="alerticon"><img src="images/check.png" alt="checkmark" /></span> <p>You did not set the proper return e-mail address. Please fill out the fields and then submit the form.</p> </div>').prependTo('#content');   

  5. });   

  6. $('#newAlertBox').on('click'function(e){   

  7.   e.preventDefault();   

  8.   var samplehtml = $('<div class="notify errorbox"> <h2>Warning!</h2> <span class="alerticon"><img src="images/error.png" alt="error" /></span> <p>You did not set the proper return e-mail address. Please fill out the fields and then submit the form.</p> </div>').prependTo('#content');   

  9. });   

  10. ;  

  每個函數都有它自己的變量,來包含一個我用于警告框的HTML的復制/粘貼鏡像。這個HTML內容存儲在一個字符串中用jQuery選擇器轉化為一個對象。我可以使用prependTo()方法選擇這個內容DIV使新的警告框出現在頁面的最上方。所有新的盒子也可以同樣的方式被解除,因為它們的HTML代碼和用靜態HTML硬編碼的盒子完全相同。

到此,相信大家對“如何使用CSS3來制作消息提醒框 ”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

珠海市| 仁布县| 阜阳市| 苍南县| 宁陵县| 溧阳市| 五原县| 长宁县| 扎赉特旗| 万宁市| 调兵山市| 韶关市| 玛多县| 喜德县| 青冈县| 乐安县| 昌平区| 明星| 霍林郭勒市| 云林县| 徐水县| 浦江县| 和龙市| 南和县| 宜君县| 湘乡市| 郎溪县| 屏边| 山阳县| 吉安市| 武夷山市| 霍山县| 隆子县| 黎城县| 沙坪坝区| 乐平市| 托克逊县| 长垣县| 肥城市| 岑巩县| 历史|