溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

react項目中iconfont的使用案例

發(fā)布時間:2021-02-05 11:30:00 來源:億速云 閱讀:302 作者:小新 欄目:web開發(fā)

小編給大家分享一下react項目中iconfont的使用案例,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

項目中通常會使用iconfont作為圖標(biāo)顯示的解決方案,這里介紹下如何在項目中配置。

準(zhǔn)備工作

首先配置好項目,關(guān)鍵需要注意FontClass/Symbol 前綴Font Family兩個配置。

react項目中iconfont的使用案例

當(dāng)我們配置好項目之后,就可以導(dǎo)出樣式文件,復(fù)制如下圖中的css鏈接中的內(nèi)容備用。

react項目中iconfont的使用案例

正餐開始

創(chuàng)建Icon.js文件。

import React from 'react';
import classNames from 'classnames';
import './iconfont.less';

// 上文中從iconfont中復(fù)制的css文件內(nèi)容
import './icon.css';

const Icons = (props) => {
 const {type, spin, className = '', ...others} = props;

 const cls = classNames({
  'unovo-iconfont': true,
  [`unovo-iconfont-${type}`]: true,
  'unovo-iconfont-spin': !!spin,
 }, className);

 return (
  <i className={cls} {...others}/>
 );
};

export default Icons;

創(chuàng)建iconfont.less。

@keyframes icon-spin {
 from {
  transform: rotate(0deg);
 }
 to {
  transform: rotate(360deg);
 }
}

@iconfont-css-prefix: unovo-iconfont;

.@{iconfont-css-prefix}-spin:before {
 display: inline-block;
 animation: icon-spin infinite 1s linear;
}

然后這樣使用

 <Icons type={type} spin />

看完了這篇文章,相信你對“react項目中iconfont的使用案例”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI