jQuery實(shí)現(xiàn)評論模塊
本文實(shí)例為大家分享了jQuery實(shí)現(xiàn)評論模塊的具體代碼,供大家參考,具體內(nèi)容如下
本模塊可用于評論或留言,輸入?yún)^(qū)模仿暢言,內(nèi)容顯示使用時(shí)間軸,以下是示例圖。
實(shí)現(xiàn)代碼如下:
index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <link rel="stylesheet" href="css/publish_comment.css" > </head> <body> <div class="comment-box"> <div class="input-box"> <div class="input-box-head"> <img class="user-photo" src="images/photo.jpg"> </div> <div class="input-box-main"> <div class="box-border-l"></div> <div class="box-border-r"></div> <div class="box-top"></div> <div class="box-main"> <div class="input-region"> <textarea class="input-text-area" name="comment_input" placeholder="有事沒事說兩句..."></textarea> </div> </div> <div class="pub-area"> <div class="pub-btn"></div> </div> </div> </div> <div class="show-box"> <div class="comment-title">評論</div> <div class="time-line"> <div class="comment-content"> <div class='comment'> <img class=head-shot src='images/photo.jpg'> <div class='c-circle'></div> <span id='time'>2019-5-15 <span id='hour'>15:15</span> </span> <br> <p style='padding:4px'>支持各種類型的Web網(wǎng)站接入,網(wǎng)站只需要粘貼、復(fù)制JS代碼到網(wǎng)頁</p> </div> </div> </div> </div> </div> <script src="js/jquery-3.3.1.min.js"></script> <script> var hei = 200; $(function() { var dateDom = new Date(); //獲取本地時(shí)間,年月日時(shí)分 var year = dateDom.getFullYear(); var month = dateDom.getMonth() + 1; var day = dateDom.getDate(); var hour = dateDom.getHours(); var min = dateDom.getMinutes(); $(".time-line").css("height", hei + "px"); $(".pub-btn").click(function() { var comment_c = $(".input-text-area").val(); if (comment_c == "") { alert("請輸入內(nèi)容"); return; } $(".comment-content").prepend("<div class='comment'>" + "<img class=head-shot src='images/photo.jpg'>" + "<div class='c-circle'></div>" + "<span id='time'>" + year + "-" + month + "-" + day + " " + "<span id='hour'>" + hour + ":" + min + "</span>" + "</span>" + "<br>" + "<p style='padding:4px'>" + comment_c + "</p>" + "</div>"); $(".time-line").css("height", hei + "px"); hei += 115; }) }) </script> </body> </html>
publish_comment.css
* { margin: 0; padding: 0 } body { font-size: 14px; font-family: "微軟雅黑"; /* background: url("../images/2.jpg") top no-repeat; */ background: #333333; background-attachment: fixed; z-index: 0; background-size: 100%; } .comment-box { width: 800px; margin: auto; margin-top: 100px; } .input-box { width: 100%; } .input-box-head { position: relative; width: 100%; height: 60px; z-index: 10; } .user-photo { width: 40px; height: 40px; border-radius: 42px; border: 1px solid #4398ed; position: absolute; top: 22px; left: 9px; font-size: 14px; color: #4398ed; text-align: center; line-height: 42px!important; font-family: "Microsoft YaHei"; cursor: pointer; background: 0 0; } .input-box-main { display: block; position: relative; zoom: 1; z-index: 2; } .box-border-l { width: 8px; height: 97px; position: absolute; background: url("../images/border-l.png"); top: 0; left: 0; } .box-border-r { width: 8px; height: 97px; position: absolute; background: url("../images/border-r.png"); top: 0; right: 0; } .box-main { margin: 0 8px; height: 96px; /* background: #fff; */ border-bottom: 1px solid #4398ed; } .box-top { width: calc(100% - 16px); height: 8px; background: url(https://changyan.itc.cn/mdevp/extensions/cmt-box/065/images/border-t.png); overflow: hidden; position: absolute; left: 8px; top: 0; } .input-region { padding: 18px 10px 0; } .input-text-area { width: 100%; height: 70px; background: 0 0; overflow-x: hidden; overflow-y: auto; border: 0; font-size: 13px; color: #4398ed; resize: none; line-height: normal; text-align: left; box-shadow: none; -webkit-box-shadow: none; outline: none; border: none; } .pub-area { width: 100%; position: relative; z-index: 12; } .pub-btn { position: absolute; top: 10px; right: 0; width: 102px; height: 30px; overflow: hidden; border: 0; padding: 0; margin: 0; cursor: pointer; background-image: url("../images/post-btn.png"); background-repeat: no-repeat; background-color: transparent; } .show-box { position: relative; top: 10px; } .comment-title { position: absolute; top: 35px; left: 28px; width: 60px; height: 60px; line-height: 60px; text-align: center; font-size: 16px; color: #4398ed; border: 2px solid #4398ed; border-radius: 50%; } .time-line { width: 60px; height: 0; position: absolute; top: 100px; left: 0; border-right: 2px solid #4398ed; } .comment-content { width: 380px; height: 80px; position: absolute; top: 0px; left: 60px; } .comment-content .comment { width: 600px; height: 80px; /* background: #fff; */ border: 1px solid #4398ed; border-radius: 6px; margin-top: 30px; font-size: 16px; line-height: 20px; color: #4398ed; word-break: break-all; position: relative; left: 15px; padding: 10px; box-sizing: border-box; } .c-circle { width: 6px; height: 6px; border-radius: 50%; border: 2px solid #4398ed; background: #4398ed; position: absolute; top: 35px; left: -20px; } .head-shot { position: absolute; top: 20px; left: -70px; width: 40px; height: 40px; border: 1px solid #4398ed; border-radius: 50%; }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- jQuery實(shí)現(xiàn)簡單評論功能
- jquery實(shí)現(xiàn)仿新浪微博評論滾動效果
- 基于jquery實(shí)現(xiàn)ajax無刷新評論
- jQuery實(shí)現(xiàn)的簡單無刷新評論功能示例
- jQuery 實(shí)現(xiàn)評論等級好評差評特效
- JQuery實(shí)現(xiàn)動態(tài)添加刪除評論的方法
- PHP結(jié)合jQuery實(shí)現(xiàn)的評論頂、踩功能
- jQuery基于ajax實(shí)現(xiàn)星星評論代碼
- C#使用jQuery實(shí)現(xiàn)無刷新評論提交的方法
- 基于jQuery實(shí)現(xiàn)的美觀星級評論打分組件代碼
相關(guān)文章
jQuery插件zTree實(shí)現(xiàn)獲取當(dāng)前選中節(jié)點(diǎn)在同級節(jié)點(diǎn)中序號的方法
這篇文章主要介紹了jQuery插件zTree實(shí)現(xiàn)獲取當(dāng)前選中節(jié)點(diǎn)在同級節(jié)點(diǎn)中序號的方法,結(jié)合實(shí)例形式分析了屬性插件zTree針對節(jié)點(diǎn)序號的相關(guān)操作技巧,需要的朋友可以參考下2017-03-03jQuery Ajax調(diào)用WCF服務(wù)詳細(xì)教程
這篇文章主要介紹了jQuery Ajax調(diào)用WCF服務(wù)詳細(xì)教程,本文講解了從WFC編程到JQUERY調(diào)用的詳細(xì)步驟,并總結(jié)了使用中遇到的問題和解決方法,需要的朋友可以參考下2015-03-03全面解析DOM操作和jQuery實(shí)現(xiàn)選項(xiàng)移動操作代碼分享
這篇文章主要介紹了DOM操作和jQuery實(shí)現(xiàn)選項(xiàng)移動操作代碼分享的相關(guān)資料,非常不錯(cuò)具有參考借鑒價(jià)值,需要的朋友可以參考下2016-06-06jquery 表單進(jìn)行客戶端驗(yàn)證demo
用jquery對表單進(jìn)行客戶端驗(yàn)證demo ,學(xué)習(xí)jquery的朋友可以參考下。2009-08-08jQuery彈出層始終垂直居中相對于屏幕或當(dāng)前窗口
碰到?jīng)]有固定高或者固定寬或者固定高和寬的時(shí)候,我們就需要用JS去處理,去動態(tài)獲取當(dāng)前窗口高或者寬;今天弄了2種情況,一個(gè)是相對于屏幕窗體,一個(gè)是相對于當(dāng)前的窗口,看代碼2013-04-04jQuery實(shí)現(xiàn)自動與手動切換的滾動新聞特效代碼分享
這篇文章主要介紹了jQuery實(shí)現(xiàn)列表自動循環(huán)滾動手動滾動展示新聞,推薦給大家,有需要的小伙伴可以參考下。2015-08-08jquery獲取input type=text中的值的各種方式(總結(jié))
下面小編就為大家?guī)硪黄猨query獲取input type=text中的值的各種方式(總結(jié))。小編覺的挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2016-12-12jquery實(shí)現(xiàn)簡單的拖拽效果實(shí)例兼容所有主流瀏覽器(優(yōu)化篇)
相對于上一篇,優(yōu)化了拖拽的效果,具體的代碼及截圖如下,感興趣的朋友可以參考下哈,希望對大家有所幫助2013-06-06