【发布时间】:2022-08-09 04:35:39
【问题描述】:
在 streamlabs 中,您可以使用自定义 HTML、CSS 自定义聊天外观。这是我想要达到的最终结果。带有圆形边缘的半透明背景。
这是当前使用 google font api 的 HTML、CSS。
HTML
<!-- item will be appened to this layout -->
<div id=\"log\" class=\"sl__chat__layout\">
</div>
<!-- chat item -->
<script type=\"text/template\" id=\"chatlist_item\">
<div data-from=\"{from}\" data-id=\"{messageId}\">
<span class=\"meta\" style=\"color: {color}\">
<span class=\"badges\">
</span>
<span class=\"name\">{from}</span>
</span>
<span class=\"message\">
{message}
</span>
</div>
</script>
CSS
@import url(https://fonts.googleapis.com/css?family=Roboto:700);
* {
box-sizing: border-box;
}
html, body {
height: 100%;
overflow: hidden;
}
body {
text-shadow: 0 0 1px #000, 0 0 2px #000;
background: {background_color};
font-family: \'Roboto\';
font-weight: 700;
font-size: {font_size};
line-height: 1.5em;
color: {text_color};
}
#log>div {
animation: fadeInRight .3s ease forwards, fadeOut 0.5s ease {message_hide_delay} forwards;
-webkit-animation: fadeInRight .3s ease forwards, fadeOut 0.5s ease {message_hide_delay} forwards;
}
.colon {
display: none;
}
#log {
display: table;
position: absolute;
bottom: 0;
left: 0;
padding: 0 10px 10px;
width: 100%;
table-layout: fixed;
}
#log>div {
display: table-row;
}
#log>div.deleted {
visibility: hidden;
}
#log .emote {
background-repeat: no-repeat;
background-position: center;
background-size: contain;
padding: 0.4em 0.2em;
position: relative;
}
#log .emote img {
display: inline-block;
height: 1em;
opacity: 0;
}
#log .message,#log .meta {
vertical-align: top;
display: table-cell;
padding-bottom: 0.1em;
}
#log .meta {
width: 35%;
text-align: right;
padding-right: 0.5em;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
#log .message {
word-wrap: break-word;
width: 65%;
}
.badge {
display: inline-block;
margin-right: 0.2em;
position: relative;
height: 1em;
vertical-align: middle;
top: -0.1em;
}
.name {
margin-left: 0.2em;
}
上面的 HTML、CSS 导致以下聊天外观。没有半透明背景,没有圆角。蓝色背景来自网站 streamlabs 本身。
提前致谢。我没有找到这个问题的任何线程。