blog icon indicating copy to clipboard operation
blog copied to clipboard

background-clip react 数据更新展示不变 坑

Open yongheng2016 opened this issue 5 years ago • 0 comments

image

解决方案

.title{
  position: relative;
}

.title::after {
  content: attr(data-letter);
  background: -webkit-linear-gradient(left, #f2b233, #fff172 55%, #f2b233);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
<div className="title" data-letter={title} />

yongheng2016 avatar Oct 16 '19 03:10 yongheng2016