问题描述:
将字体图标设置成渐变的图标的css
.iconfont{
content: "\e68c";
background: linear-gradient(to top right, #FFA300 0%, #FFC300 90%);
-webkit-background-clip: text;
color: transparent;
}
在ios11.1 11.2版本中,退出当前app页面,后台保持运行,进入其他app,进行刷新操作,再次返回到之前app页面,会出现background-clip:text,出现剪切背景失败,显示整张图片
出现原因:background-clip:text在 ios11.1 11.2版本不兼容
解决方案:升级版本。
经验总结:多找几个不同手机测测,找不同!