如何使用 css 来设置文字描边亿以达到 canvas 中设置文字外描边的效果?

查看 17|回复 0
作者:overdev   
实际上我要通过使用富文本编辑器来实现不同风格的文本,但是我发现并没有一个富文本编辑器可以设置文本描边,于是我想编写一个关于文字描边的插件.但是我不知道如何通过 css 来设置文本描边来得到这样的效果


  
    test text
  
  
    test text
  
  
.test {
  font-size: 80px;
  color: black;
  text-shadow: -10px -10px 10px blue,
    10px -10px 10px blue,
    -10px 10px 10px blue,
    10px 10px 10px blue;
}
.test2 {
  font-size: 80px;
  color: black;
  -webkit-text-stroke: 10px blue;
}
.text3 {
  width: 400px;
  height: 400px;
  background-color: black;
}
您需要登录后才可以回帖 登录 | 立即注册

返回顶部