FontAwesome instagram icon - colorized

后端 未结 3 2019
深忆病人
深忆病人 2021-02-19 11:32

Any one know how to show the FontAwesome icon for Instagram and style it to be shown with the new Instagram icon multi colors? New instagram icon

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-19 12:04

    i dont think you will get the exact color sheme but this fiddle

        background-image: -webkit-gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) );  
        background-image: gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) );
        color:transparent; 
       -webkit-background-clip: text;
       background-clip: text;
    

    found here might help

提交回复
热议问题