微信小程序中自定義仿今日頭條評(píng)論組件

微信小程序自定義組件,我們來(lái)寫(xiě)一個(gè)與今日頭條類型的評(píng)論組件

1.我們先定義一個(gè)插件,Comment

申明為組件在comment.json中

{

? "component": true,

? "usingComponents": {}

}

2.編寫(xiě)頁(yè)面模板


3.編寫(xiě)js

Component({

? options: {

? ? multipleSlots: true // 在組件定義時(shí)的選項(xiàng)中啟用多slot支持

? },

? properties: {

? ? maxlength:{

? ? ? type:Number,

? ? ? value:150,

? ? },

? ? placeholder:{

? ? ? type:String,

? ? ? value:'請(qǐng)輸入評(píng)論內(nèi)容'

? ? },

? ? isCollect:{//是否已收藏

? ? ? type:Number,

? ? ? value:false

? ? },

? ? showCollect:{//是否顯示收藏

? ? ? type:Boolean,

? ? ? value:true

? ? }

? },

? //

? data:{

? ? sendComment: true,

? ? content:'',//評(píng)論內(nèi)容

? ? activty:false,

? },


? methods:{

? ? commentClick:function(e){

? ? ? this.setData({

? ? ? ? sendComment:false,

? ? ? });

? ? },

? ? bindTextAreaBlur:function(e){

? ? ? this.setData({

? ? ? ? sendComment: true,

? ? ? });

? ? },

? ? bindinput:function(e){

? ? ? this.setData({

? ? ? ? content: e.detail.value,

? ? ? ? activty: e.detail.cursor>0?true:false

? ? ? })

? ? },

? ? //發(fā)送評(píng)論

? ? sendPull:function(e){

? ? ? this.triggerEvent("sendPull",{content:this.data.content,obj:this});

? ? },

? ? //清空內(nèi)容

? ? clearContent:function(e){

? ? ? this.setData({

? ? ? ? content: '',

? ? ? })

? ? },

? ? //評(píng)論按鈕

? ? commentNuber:function(e){

? ? ? this.triggerEvent("commentNumber");

? ? },

? ? //分享

? ? shareClick:function(e){

? ? ? this.triggerEvent("shareClick");

? ? },

? ? //收藏

? ? collect:function(e){

? ? ? this.triggerEvent("collectClick");

? ? },

? ? //是否收藏杖玲,亮燈

? ? isCollect:function(e){

? ? ? this.setData({

? ? ? ? isCollect: !this.data.isCollect,

? ? ? })

? ? }

? }

});

4.css代碼

.comment{

? position: fixed;

? left:0;

? bottom:0;

? width:100%;

? background:#fff;

? z-index: 9999;

}

.pen{

? width:41rpx;

? margin-left:20rpx;

? height:41rpx;

? margin-top: 10rpx;

}

.pen-div{

? display: inline-block;

? vertical-align: top;

}

.pen-text{

? display: inline-block;

? vertical-align: top;

}

.pen-input{

margin-left:6rpx;

line-height:60rpx;

font-size:24rpx;

font-weight:100rpx;

letter-spacing:2rpx;

}

.showBottom{

? width:100%;

? height:86rpx;

? border-top:1rpx solid #e1e1e1;

}

.showText{

? display:inline-block;

? vertical-align:top;

? width:50%;

? height:60rpx;

? background:#e1e1e1;

? margin:15rpx;

? margin-left:38rpx;

? border-radius:50rpx;

}

.showButtom{

? display:inline-block;

? vertical-align:top;

? width:40%;

? height:80rpx;

}

.comment-number-ioc{

? width:51rpx;

? margin-left:48rpx;

? height:51rpx;

? margin-top:23rpx;

}

.cnNuberm{

? position:absolute;

? width:45rpx;

? height:20rpx;

? border-radius:30rpx;

? background:red;

? color:#fff;

? font-size:18rpx;

? line-height:20rpx;

? text-indent:4rpx;

? top:14rpx;

? left:500rpx;

}

.collect-ioc{

? width:51rpx;

? margin-left:51rpx;

? height:46rpx;

? margin-top:20rpx;

}

.comment-number{

? display:inline-block;

? vertical-align: top;

}

.collect{

? display:inline-block;

? vertical-align: top;

}

.share{

? display:inline-block;

? vertical-align: top;

}

.share-ioc{

? width:53rpx;

? margin-left:51rpx;

? height:46rpx;

? margin-top:20rpx;

}

.send-comment{

? width:100%;

? height:86rpx;

? margin: 5rpx;

? border-top:1rpx solid #e1e1e1;

}

.send-input{

? width:530rpx;

? min-height: 65rpx;

? max-height:86rpx;

? height: 65rpx;

? background:#e1e1e1;

? border-radius:30rpx;

? outline:none;

? overflow:hidden;

? padding-left:20rpx;

? margin-bottom:24rpx;

}

.send-view{

? display:inline-block;

? vertical-align:top;

? margin:15rpx 15rpx 15rpx 55rpx;

}

.send-buttom{

? display:inline-block;

? vertical-align:top;

? margin:18rpx 22rpx 18rpx 18rpx;

}

.send-text{

? font-size:34rpx;

? font-weight:320;

? color:#e1e1e1;

}

.activty{

? color:#009a61

}

到這一部自定義評(píng)論組件就完成了臼闻,接下來(lái)囤采,我們把彈出回復(fù)層也做成一個(gè)組件

1.reply.json

{

? "component": true,

? "usingComponents": {

? ? "comment": "/component/Comment/comment"

? }

}

2.頁(yè)面



3.css

.toats{

? position:fixed;

? padding-top:5%;

? width:100%;

? height:0;

? background:#fff;

? overflow: hidden;

? bottom:0.1%;

? transition:height 0.5s;

? -moz-transition: height 0.5s; /* Firefox 4 */

? -webkit-transition: height 0.5s; /* Safari 和 Chrome */

? -o-transition: height 0.5s; /* Opera */

}

.top{

? width:100%;

? height:65rpx;

? border-radius:6rpx;

? border:1px solid #e1e1e1;

? border-bottom:none;

}

.clear{

? display:inline-block;

? margin:11rpx 21rpx 21rpx 21rpx;

? font-size:38rpx;

}

.top-title{

? display:inline-block;

? vertical-align:top;

? line-height:65rpx;

? margin-left:38%;

}

.container {

? ? height:1100rpx;

? ? margin-top:13rpx;

}

.comment-count{

? font-size: 12px;

? color: #CCCCCC;

? line-height: 35px;

? height: 35px;

? padding: 0 36rpx;

}

.comment-list{

? background-color: white;

}

.title{

? border-top: 1px solid #f2f2f2;

}

.comment-item{

? width: 100%;

? height: auto;

? overflow: hidden;

? padding: 16px 18px;

? border-bottom: 1px solid #f2f2f2;

}

.all-comment{

? margin-left:15rpx;

? margin-top: 15rpx;

}

.comment-person{

? display: flex;

? align-items: center;

}

.comment-person-avatar{

? width: 42px;

? height: 42px;

? border-radius: 21px;

? margin: 0 10px 0 0;

? flex: 0 0 42px;

}

.comment-person-info{

? flex: 1;

}

.comment-person-name{

? font-size: 14px;

? color: #232323;

}

.comment-time{

? font-size: 12px;

? color: #848484;

}

.comment-text{

? font-size: 14px;

? color: #232323;

? padding-top: 24rpx;

}

4.js

Component({

? options: {

? ? multipleSlots: true // 在組件定義時(shí)的選項(xiàng)中啟用多slot支持

? },

? properties: {

? ? showReply:{

? ? ? type:Boolean,

? ? ? value:false,

? ? }

? },

? //

? data: {

? ? scrollTop:1,

? ? lastX: 0,

? ? lastY: 0,

? },

? methods: {

? ? loadMoreEvent:function(){

? ? },

? ? clear:function(e){

? ? ? console.info(">>>>clear");

? ? ? this.setData({

? ? ? ? showReply:false,

? ? ? });

? ? },

? ? handletouchmove: function(event){

? ? ? console.info(">>>>",event);

? ? ? let currentX = event.touches[0].pageX

? ? ? let currentY = event.touches[0].pageY

? ? ? let tx = currentX - this.data.lastX

? ? ? let ty = currentY - this.data.lastY

? ? ? if (Math.abs(tx) < Math.abs(ty)) {

? ? ? ? if (ty < 0){

? ? ? ? ? this.setData({

? ? ? ? ? ? showReply:false,

? ? ? ? ? });

? ? ? ? ? console.info("向上滑動(dòng)" + ty);

? ? ? ? }

? ? ? ? else if (ty > 0){

? ? ? ? ? console.info("向下滑動(dòng)");

? ? ? ? }

? ? ? }

? ? ? //將當(dāng)前坐標(biāo)進(jìn)行保存以進(jìn)行下一次計(jì)算

? ? ? this.data.lastX = currentX

? ? ? this.data.lastY = currentY

? ? }

? }

});

OK完成思犁,接下來(lái)我們?cè)陧?yè)面引入這兩個(gè)自定義組件


實(shí)現(xiàn)效果如下圖进肯,源碼目前還在完善中



?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末学辱,一起剝皮案震驚了整個(gè)濱河市环形,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌抬吟,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件危队,死亡現(xiàn)場(chǎng)離奇詭異交掏,居然都是意外死亡刃鳄,警方通過(guò)查閱死者的電腦和手機(jī)钱骂,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)愉烙,“玉大人解取,你說(shuō)我怎么就攤上這事≠骺啵” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵蔗包,是天一觀的道長(zhǎng)慧邮。 經(jīng)常有香客問(wèn)我舟陆,道長(zhǎng)耻矮,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任宦赠,我火速辦了婚禮米母,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘铁瞒。我一直安慰自己,他們只是感情好身辨,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布芍碧。 她就那樣靜靜地躺著,像睡著了一般定庵。 火紅的嫁衣襯著肌膚如雪踪危。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,166評(píng)論 1 284
  • 那天畴博,我揣著相機(jī)與錄音蓝仲,去河邊找鬼。 笑死亮隙,一個(gè)胖子當(dāng)著我的面吹牛擎勘,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播煤裙,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼硼砰!你這毒婦竟也來(lái)了题翰?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤冯事,失蹤者是張志新(化名)和其女友劉穎血公,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體累魔,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡垦写,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了命辖。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片晚伙。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡咆疗,死狀恐怖母债,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情毡们,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布登颓,位于F島的核電站红氯,受9級(jí)特大地震影響咕痛,放射性物質(zhì)發(fā)生泄漏喇嘱。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一腔丧、第九天 我趴在偏房一處隱蔽的房頂上張望作烟。 院中可真熱鬧,春花似錦科汗、人聲如沸绷雏。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)期吓。三九已至,卻和暖如春箭跳,著一層夾襖步出監(jiān)牢的瞬間潭千,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工屉来, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留狈癞,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓慨绳,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親脐雪。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容