Advertisement
Sniperninja564

Secondary Streamlabs Onscreen Chat HTML

Apr 28th, 2020 (edited)
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.44 KB | None | 0 0
  1. <!-- item will be appened to this layout -->
  2. <div id="log" class="sl__chat__layout">
  3. </div>
  4.  
  5. <!-- chat item -->
  6. <script type="text/template" id="chatlist_item">
  7.   <div data-from="{from}" data-id="{messageId}">
  8.     <span class="meta" style="color: {color}">
  9.       <span class="badges">
  10.       </span>
  11.       <span class="name">{from}:</span>
  12.     </span>
  13.  
  14.     <span class="message">
  15.       <br>{message}
  16.     </span>
  17.   </div>
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement