我这次开源的就是这个消息展示组件mobile-live-message
,有了它,在写直播H5的时候是不是就省了很多心呢?
组件本身代码只有80行,一个构造函数liveMessage
,一个消息发送函数send
;实在没太多可讲的,你如果感兴趣可以花5分钟读一下哦;附上代码,本文主要介绍使用为主
(function (win, doc) { "use strict"; function liveMessage(container, options) { if (!container) { throw 'parent element is null' } var myParentEle = document.createElement('div'); myParentEle.className = 'mobile-live-message-box'; myParentEle.style.width = '100%'; myParentEle.style.height = '100%'; myParentEle.style.overflow = 'auto'; container.appendChild(myParentEle) var contentBox = document.createElement('div'); contentBox.className = 'mobile-live-message-content-box'; myParentEle.appendChild(contentBox); this.parentElement = contentBox; this.options = {...options}; this.stopScroll = false; myParentEle.addEventListener('touchend', (e) => { var bottomLen = Math.abs(myParentEle.scrollTop - (contentBox.offsetHeight - myParentEle.offsetHeight)); if (bottomLen > 30) { console.log('停止自动滚动底部') this.stopScroll = true; setTimeout(() => { this.stopScroll = false; }, 50000) } else { console.log('开启滚动') this.stopScroll = false; } }) } liveMessage.prototype.send = function (data) { var div = document.createElement('div'); div.className = 'mobile-live-message-item' let str = ''; if (data instanceof Array) { for (let index = 0; index < data.length; index++) { const mesItem = data[index]; let content = mesItem; if (mesItem instanceof Object) { content = mesItem.text; } if (this.options.format) { content = this.options.format(mesItem); } str += `<div class="mobile-live-message-item-text">${content}</div>` } } else if (data instanceof Object) { let content = data.text; if (this.options.format) { content = this.options.format(data) } str = `<div class="mobile-live-message-item-text">${content}</div>` } else { str = `<div class="mobile-live-message-item-text">${data || ''}</div>` } div.innerHTML = str; this.parentElement.appendChild(div); if (this.stopScroll) { return; } this.parentElement.parentElement.scroll({ top: div.offsetTop, left: 0, behavior: 'smooth' }); } // smoothscroll-polyfill // 此处省略smoothscroll-polyfill源代码,具体可以去github查看全部代码 if (typeof module !== 'undefined' && module.exports) { module.exports = liveMessage; }; if (typeof define === 'function') define(function() { return liveMessage; }); win.liveMessage = liveMessage; })(window, document) 复制代码
插件借助了smoothscroll-polyfill实现平滑滚动的动画,感谢smoothscroll-polyfill作者
//npm npm i mobile-live-message --save; //cdn <script src="./src/lib/index.js"></script> 复制代码
var parentBox = document.querySelector('#container') var Mes = new liveMessage(parentBox,{}) 复制代码
var mesStr = '你好'; var mesObj = { text: '你好' } Mes.send(mesStr); Mes.send(mesObj); 复制代码
消息如果是对象的格式,插件默认会读取text
字段内容。
var mesArrayStr = ['你好','你好']; var mesArrayObj = [ { text: '你好' }, { text: '你好' } ] Mes.send(mesArrayStr); Mes.send(mesArrayObj); 复制代码
初始化插件的时候可以传入fotmat
参数,如下
var Mes = new liveMessage(parentBox, { format: function(mesItem) { if (mesItem.type === 'rocket') { return `<img src="${RocketIcon}" class="icon icon-rocket"/><span>${mesItem.text}</span>` } else if (mesItem.type === 'flower') { return `<img src="${FlowerIcon}" class="icon icon-flower"/><span>${mesItem.text}</span><img src="${FlowerIcon}" class="icon icon-flower"/>` } else if (mesItem.type === 'face') { return `<img src="${FaceIcon}" class="icon icon-face"/><span>${mesItem.text}</span>` } } }); var data = [ { type: 'rocket', text: '小火箭飞一个' } ] Mes.send(data); 复制代码
然后你需要在插件外面写你的消息样式,插件不会做样式上的干预,因为这里的样式五花八门,没法统一。
最后附上github源码 github.com/ColdDay/mob…
由于作者水平有限,可能有代码上或者实现上的问题,欢迎指出来,谢谢
如果对你有帮助,给个Star呗