可滾動漸變聊天氣泡
P粉197639753
2023-09-01 11:52:18
<p>我想要一個帶有漸變的聊天氣泡的白色容器,當滾動時,漸變會隨著下面的漸變而變化,如本例所示:</p>
<p>我試著將任何 <code>chatBubble</code> 後面的 <code>.container</code> 部分設為透明,以便 <code>.root</code> 的背景可見。 </p>
<p>
<pre class="brush:css;toolbar:false;">.root {
background-color: linear-gradient(red, yellow);
width: 100vw;
height: 100vh;
}
.container {
width: 100%;
height: 100vh;
background-color: white
}
.chatBubble {
background-color: transparent;
border-radius: 4px;
min-width: 50;
padding: 10px;
}</pre>
<pre class="brush:html;toolbar:false;"><div class="root">
<div class="container">
<chatBubble>This is a chat bubble</chatBubble>
<chatBubble>This is another chat bubble</chatBubble>
</div>
</div></pre>
</p>
這就是我到目前為止所得到的,試圖掩蓋它,這樣我就可以讓白色背景與漸變一起使用。
您可以從
.bubble
中「放置陰影」: