选择
小于 1 分钟
选择
choose 命令调用的选择按钮列表。
基础样式请查看源码
结构
return (
<div class="Choose_Main">
{getChoices().map((choice) => (
<div class="Choose_item_outer">
<div
class={choice.disabled ? "Choose_item_disabled" : "Choose_item"}
style={{fontFamily: getFontFamily()}}
>
{choice.text}
</div>
</div>
))}
</div>
);
样式
Choose_Main
选择按钮列表的容器样式。
Choose_item_outer
选择按钮的外层元素样式。
Choose_item
选择按钮的内层元素样式。
Choose_item_disabled
选择按钮被禁用时的样式。