是否有人使用react.js和Material UI库构建网页?我应该如何调整图标大小?这是一个svg图标。 我刚刚建立了一个"创建新的"组件,这是一张材料纸,顶部有一个内容添加按钮。这是代码。
import React from 'react';
import Paper from 'material-ui/lib/paper';
import ContentAdd from 'material-ui/lib/svg-icons/content/add';
import IconButton from 'material-ui/lib/icon-button';
const styleForPaper = {
width: '96vw',
height: '20vh',
margin: 20,
textAlign: 'center',
display: 'inline-block',
};
const styleForButton = {
'marginTop': '7vh',
};
const PaperToAddNewWidgets = () => (
<div>
<Paper style={styleForPaper} zDepth={2}>
<IconButton
style={styleForButton}
touch={true}
tooltip="Add New Widget">
<ContentAdd/>
</IconButton>
</Paper>
</div>
);
export default PaperToAddNewWidgets;
&#13;
看起来不错(确保以全尺寸查看),但图标太小。然后我打开了chrome dev工具,看到了以下的html代码。
<div style="background-color:#ffffff;transition:all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;box-sizing:border-box;font-family:Roboto, sans-serif;-webkit-tap-highlight-color:rgba(0,0,0,0);box-shadow:0 3px 10px rgba(0,0,0,0.16),
0 3px 10px rgba(0,0,0,0.23);border-radius:2px;width:96vw;height:20vh;margin:20px;text-align:center;display:inline-block;mui-prepared:;" data-reactid=".0.2.0.1.0"><button style="border:10px;background:none;box-sizing:border-box;display:inline-block;font:inherit;font-family:Roboto, sans-serif;tap-highlight-color:rgba(0, 0, 0, 0);cursor:pointer;text-decoration:none;outline:none;transform:translate3d(0, 0, 0);position:relative;transition:all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;padding:12px;width:48px;height:48px;font-size:0;margin-top:7vh;mui-prepared:;-webkit-appearance:button;" tabindex="0" type="button" data-reactid=".0.2.0.1.0.0"><div data-reactid=".0.2.0.1.0.0.0"><span style="height:100%;width:100%;position:absolute;top:0;left:0;overflow:hidden;mui-prepared:;" data-reactid=".0.2.0.1.0.0.0.0"></span><div style="position: absolute; font-family: Roboto, sans-serif; font-size: 14px; line-height: 32px; padding: 0px 16px; z-index: 3000; color: rgb(255, 255, 255); overflow: hidden; top: -10000px; border-radius: 2px; opacity: 0; left: -44px; transition: top 0ms cubic-bezier(0.23, 1, 0.32, 1) 450ms, transform 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; box-sizing: border-box; -webkit-user-select: none;" data-reactid=".0.2.0.1.0.0.0.1:0"><div style="position: absolute; left: 50%; top: 0px; transform: translate(-50%, -50%); border-radius: 50%; transition: width 0ms cubic-bezier(0.23, 1, 0.32, 1) 450ms, height 0ms cubic-bezier(0.23, 1, 0.32, 1) 450ms, backgroundColor 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; width: 0px; height: 0px; background-color: transparent;" data-reactid=".0.2.0.1.0.0.0.1:0.0"></div><span style="position:relative;white-space:nowrap;mui-prepared:;" data-reactid=".0.2.0.1.0.0.0.1:0.1">Add New Widget</span></div><svg style="display:inline-block;height:24px;width:24px;transition:all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;fill:rgba(0, 0, 0, 0.87);mui-prepared:;-webkit-user-select:none;" viewBox="0 0 24 24" data-reactid=".0.2.0.1.0.0.0.1:2:$/=10"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" data-reactid=".0.2.0.1.0.0.0.1:2:$/=10.0"></path></svg></div></button></div>
&#13;
使用chrome dev工具,我修改了svg的svg图标大小和viewbox属性,并在浏览器中使图标变大。但我不知道如何在代码中调整图标大小。如果我编写一个CSS文件来修改svg,如果有多个svg元素,那将会有问题。
答案 0 :(得分:20)
这样做
{this.renderBlockB()}
只使用比例:D它有效
答案 1 :(得分:16)
您必须在iconStyle
中的<IconButton>
道具中设置图标的大小。以下示例from the material-ui docs。
根据我的经验,如果你只设置高度或宽度,没有任何反应 - 只有当你设置高度和高度时似乎才有效。宽度为相同的值。
import React from 'react';
import IconButton from 'material-ui/IconButton';
import ActionHome from 'material-ui/svg-icons/action/home';
const styles = {
largeIcon: {
width: 60,
height: 60,
},
};
const IconButtonExampleSize = () => (
<div>
<IconButton
iconStyle={styles.largeIcon}
>
<ActionHome />
</IconButton>
</div>
);
答案 2 :(得分:6)
没有。大多数其他答案都不令人满意,并且实践不佳,至少在 2021 年是这样。这个答案在 documentation here 中确实得到了回答,不需要任何 CSS 技巧即可开始工作。
在 MUI 中,Button
和 IconButton
组件本质上只是将子 Icon
元素嵌套在 <a>
或 <Link>
(react-router ) 元素。他们对大小没有任何内在控制。因此,要增加按钮大小,只需使用 Icon
属性增加 IconButton
的 fontSize
子项的大小。这会自动使按钮变大。
例如,使下面的 IconButton
变大:
<IconButton>
<Icon />
</IconButton>
我们只是直接增加了 Icon
孩子的大小。
<IconButton>
<Icon fontSize="large" />
</IconButton>
但是,这是您可以使用 fontSize
属性指定的最大尺寸。为了更大,我们必须手动配置 CSS font-size
属性。
<IconButton>
<Icon style={{ fontSize: 60 }} />
</IconButton>
简单。
编辑:显然,无论出于何种原因,Button
组件具有允许控制其大小的 size
属性,但 IconButton
组件没有。我不知道为什么 MUI 如此不一致......
答案 3 :(得分:3)
在使用最新的React版本(今天是v16.13.1)和Material-ui(今天是v4.9.14)时,我遇到了同样的问题。
只需将这种样式添加到图标按钮
MyIconButton: {
'& svg': {
fontSize: theSizeIWant
}
}
import React from "react";
import { makeStyles } from '@material-ui/core/styles';
import IconButton from '@material-ui/core/IconButton';
import DeleteIcon from '@material-ui/icons/Delete';
const useStyles = makeStyles((theme) => ({
deleteIcon1: {
'& svg': {
fontSize: 25
}
},
deleteIcon2: {
'& svg': {
fontSize: 50
}
},
deleteIcon3: {
'& svg': {
fontSize: 75
}
},
deleteIcon4: {
'& svg': {
fontSize: 100
}
}
}));
export default function App() {
const classes = useStyles();
return (
<div className="App">
<h1>fontSize: 25</h1>
<IconButton className={classes.deleteIcon1}>
<DeleteIcon />
</IconButton>
<h1>fontSize: 50</h1>
<IconButton className={classes.deleteIcon2}>
<DeleteIcon />
</IconButton>
<h1>fontSize: 75</h1>
<IconButton className={classes.deleteIcon3}>
<DeleteIcon />
</IconButton>
<h1>fontSize: 100</h1>
<IconButton className={classes.deleteIcon4}>
<DeleteIcon />
</IconButton>
</div>
);
}
结果将是:
我创建了this codesandbox。
希望这会有所帮助!
答案 4 :(得分:2)
您可以只在IconButton元素的子节点上使用fontSize属性,在本例中为ContentAdd节点。
<IconButton
style={styleForButton}
touch={true}
tooltip="Add New Widget">
<ContentAdd fontSize="large" />
</IconButton>
有4个可用选项-继承,默认,小和大。
答案 5 :(得分:1)
使用最新版本的material-ui(3.1.0),您可以更改IconButton的填充和SvgIcon的fontSize来更新外观。
const styles = theme => ({
smallButton: {
padding: 6
},
largeButton: {
padding: 24
},
largeIcon: {
fontSize: "3em"
},
input: {
display: "none"
}
});
function IconButtons(props) {
const { classes } = props;
return (
<div>
<IconButton className={classes.smallButton} aria-label="Delete">
<DeleteIcon fontSize="small" />
</IconButton>
<IconButton aria-label="Delete">
<DeleteIcon fontSize="large" />
</IconButton>
<IconButton className={classes.largeButton} aria-label="Delete">
<DeleteIcon className={classes.largeIcon} />
</IconButton>
</div>
);
}
答案 6 :(得分:1)
这对我有用 fontSize="大"
<Badge badgeContent={4} color="primary" >
<CameraAltIcon fontSize="large" />
</Badge>
看道具 --> fontSize
答案 7 :(得分:0)
我正在使用IconStyle prop来改变svg图标的大小。
<IconButton
tooltip="Add New Group"
tooltipPosition="top-center"
style={{padding: 0, height: 0}}
iconStyle={{height: 31, width: 48}}
onClick={e => this.openNewList()}
disabled={!this.state.newAvailable}>
<ActionHome />
</IconButton>
答案 8 :(得分:0)
假设您使用 Sass:
.divWithTargetSVG {
.MuiSvgIcon-root {
font-size: Xrem/px;
}
}
答案 9 :(得分:-1)
有两种方法可以放大svg,一种是override the style with iconStyle,另一种是编辑https://github.com/callemall/material-ui/blob/master/src/SvgIcon/SvgIcon.js中找到的代码
注意:ContentAdd
从SvgIcon
const mergedStyles = Object.assign({
..
height: 24, // <-- change default height
width: 24, // <-- change default width
..
}, style);
return (
<svg
{...other}
..
style={prepareStyles(mergedStyles)}
..
>