+
95
-

微信小程序如何引入svg图标?

请问微信小程序如何引入svg图标?

网友回复

+
15
-

两种方式

第一种、将svg转换成base64格式的,在线svg转base64工具地址为:

转换好后:

wxss代码

 .svg-demo-container {
     margin: 50rpx;
     width: 300rpx;
     display: flex;
     align-items: center;
    }
   .svg-demo-text {
     color: #888896;
     font-size: 26rpx;
     margin-left: 9rpx;
   } 	  
 .icon-open-new {
     background-image: url("data:image/svg+xml, %3Csvg height='24' width='2...

点击查看剩余70%

我知道答案,我要回答