0
"6.25 %"와 달력보기의 함수에서 반환 된 너비의 곱을 구하려고합니다. 직사각형은 약속 시간 수를 나타내며 화면의 크기가 조정 된 경우 시간 축과 정렬되도록 비례하여 축소해야합니다. 이것은 내가하고 싶은 일이지만, 작동하지 않습니다.React Dynamic CSS
class Appointment extends React.Component {
getWidth(appt){
return Math.abs((new Date(appt.end_at)-(new Date(appt.start_at))))/3600000
}
render() {
var style = {
width:this.getWidth(this.props.appointment) *'6.25%',
height:'30px',
background:'blue',
};
return (
<div>
<div id="rectangle" style={style}></div>
</div>
);
}
}