Site Notice

hello, world

Difference between revisions of "超星弹幕助手"

From Project-EPB Commons
([InPageEdit] 没有编辑摘要)
([InPageEdit] 没有编辑摘要)
Line 1: Line 1:
 
<html>
 
<html>
 
<script src="https://common.wjghj.cn/js/ChaoXingDanMuZhuShou"></script>
 
<script src="https://common.wjghj.cn/js/ChaoXingDanMuZhuShou"></script>
 +
这是一个超星网课直播平台弹幕刷屏助手的演示页面,我在这简单做了一个类似于评论区的东西。
 
<pre id="msgArea" style="padding: 4px; height: 200px; overflow: auto; border: 1px solid #aaa;"><p class="comment">[<span style="color:#f48">管理员消息</span>]<b>老师:</b>同学们怎么想呢?</p></pre>
 
<pre id="msgArea" style="padding: 4px; height: 200px; overflow: auto; border: 1px solid #aaa;"><p class="comment">[<span style="color:#f48">管理员消息</span>]<b>老师:</b>同学们怎么想呢?</p></pre>
 
<textarea id="RKLBChat_sendText"></textarea>
 
<textarea id="RKLBChat_sendText"></textarea>

Revision as of 00:52, 22 February 2020

<html> <script src="https://common.wjghj.cn/js/ChaoXingDanMuZhuShou"></script> 这是一个超星网课直播平台弹幕刷屏助手的演示页面,我在这简单做了一个类似于评论区的东西。 <pre id="msgArea" style="padding: 4px; height: 200px; overflow: auto; border: 1px solid #aaa;"><p class="comment">[<span style="color:#f48">管理员消息</span>]<b>老师:</b>同学们怎么想呢?</p></pre> <textarea id="RKLBChat_sendText"></textarea> <button id="RKLBChat_sendMsg" onclick="sendCommentByMe()">发送评论</button> <script> function sendComment(user, comment) {

 if (comment === '' || user === '') return;
 $('#msgArea').append('<p class="comment"><b>' + user + ':</b>' + comment + '<span style="color:#999">' + new Date().toTimeString() + '</span></p>');
 var msgArea = document.getElementById('msgArea');
 msgArea.scrollTop = msgArea.scrollHeight;

} function sendCommentByMe(){

 var toSent = $('#RKLBChat_sendText').val();
 $('#RKLBChat_sendText').val('');
 sendComment('您', toSent);

} setInterval(function(){

 sendComment('其他人','大概是……然后吧……我觉得呢……你们说呢?');

},5000); </script> </html>