首页 > 编程语言 >视频直播app源码,实现渐变文字 ,文字换行,加空格

视频直播app源码,实现渐变文字 ,文字换行,加空格

时间:2022-08-30 14:24:24浏览次数:58  
标签:文字 换行 text app 空格 源码 渐变

视频直播app源码,实现渐变文字 ,文字换行,加空格

1、渐变文字,其实是偷换了概念运用背景色的渐变

 


  
.text:
{font-family: STSongti-SC-Black;
  font-size: 28px;
  background:linear-gradient(131deg,rgba(255,200,135,1) 0%,rgba(236,152,54,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
   text-shadow:0px 2px 2px 0px rgba(78,42,3,1);
 }

2、文字换行,仅限使用text

 


<text>哈哈哈哈哈\n怎么了</text>

 

3、文字加空格,还是仅限text

 


        <text  decode="{{true}}" space="ensp">&ensp;</text>

 

以上就是视频直播app源码,实现渐变文字 ,文字换行,加空格, 更多内容欢迎关注之后的文章

 

标签:文字,换行,text,app,空格,源码,渐变
From: https://www.cnblogs.com/yunbaomengnan/p/16639141.html

相关文章