- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含 2 个选择元素和 1 个输入框的侧边栏,它们之间看起来像:
第一个选择元素的最大选项是 0.75x
& 在第二个选择元素上是 WEBP
.
常量.ts
export const pixelRatios = [
{
id: "1",
label: "0.5x",
value: "0.5",
},
{
id: "2",
label: "0.75x",
value: "0.75",
},
{
id: "3",
label: "1x",
value: "1",
},
{
id: "4",
label: "1.5x",
value: "1.5",
},
{
id: "5",
label: "2x",
value: "2",
},
{
id: "6",
label: "3x",
value: "3",
},
{
id: "7",
label: "4x",
value: "4",
},
]
export const extensions = [
{
id: "1",
label: "PNG",
value: "png",
},
{
id: "2",
label: "JPEG",
value: "jpeg",
},
{
id: "3",
label: "WEBP",
value: "webp",
},
]
选择.tsx
import * as React from "react"
import { Listbox, Transition } from "@headlessui/react"
import clsx from "clsx"
interface Option {
id: string
value: string
label: string
}
interface IProps {
className?: string
label?: string
selectedOption: Option
onChange: (selectedOption: Option) => void
options: Array<Option>
}
const Selector = () => (
<svg
className="w-5 h-5 text-indigo-600"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z"
clipRule="evenodd"
/>
</svg>
)
export const Select = ({
className,
label,
options,
selectedOption,
onChange,
}: IProps) => {
return (
<Listbox
as="div"
className={className}
value={selectedOption}
onChange={(selectedOption: Option) => {
onChange(selectedOption)
}}
>
{({ open }) => (
<>
{label && (
<Listbox.Label className="mb-1 text-sm font-medium text-blue-gray-500">
{label}
</Listbox.Label>
)}
<div className="relative mt-1">
<Listbox.Button className="relative w-full py-2 pl-3 pr-10 text-left bg-white border border-gray-300 rounded-md shadow-sm cursor-default focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">
<span className="block ml-1">{selectedOption.label}</span>
<span className="absolute inset-y-0 right-0 flex items-center pr-2 ml-3 pointer-events-none">
<Selector />
</span>
</Listbox.Button>
<div className="absolute bottom-0 z-10 w-full mt-1 bg-white rounded-md shadow-lg mb-11">
{/* bottom-0 will open the select menu up & mb-11 will put the dropup above the select option */}
<Transition
show={open}
leave="transition duration-100 ease-in"
leaveFrom="transform opacity-100"
leaveTo="transform opacity-0"
>
<Listbox.Options
static
className="py-1 overflow-auto text-base rounded-md max-h-56 ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm"
>
{options.map((option) => {
return (
<Listbox.Option
as={React.Fragment}
key={option.id}
value={option}
>
{({ active, selected }) => {
return (
<li
className={clsx(
"relative py-2 pl-3 cursor-default select-none pr-9 text-sm",
{
"text-white bg-indigo-600": active,
"text-gray-900": !active,
},
)}
>
<div className="flex items-center">
<span
className={clsx("ml-3 block", {
"font-semibold": selected,
"font-normal": !selected,
})}
>
{option.label}
</span>
</div>
</li>
)
}}
</Listbox.Option>
)
})}
</Listbox.Options>
</Transition>
</div>
</div>
</>
)}
</Listbox>
)
}
应用程序.tsx
import * as React from "react"
import { Select } from "./Select"
import { pixelRatios, extensions } from "./constants"
export type Extension = "jpeg" | "png" | "webp"
export type PixelRatio = 0.5 | 0.75 | 1 | 1.5 | 2 | 3 | 4
export default function App() {
const [pixelRatio, setPixelRatio] = React.useState(pixelRatios[0])
const [extension, setExtension] = React.useState(extensions[0])
const [suffix, setSuffix] = React.useState("")
return (
<div className="w-full">
<h1 className="text-4xl text-center">Select (Max Content)</h1>
<div
id="sidebar"
className="fixed top-0 right-0 h-full px-3 py-4 overflow-y-auto shadow-md bg-pink-100"
style={{
minWidth: "300px",
}}
>
<div className="absolute bottom-10">
<label className="mt-1 text-sm font-medium text-blue-gray-500">
Export
</label>
<div className="flex items-center justify-between w-full space-x-2">
<Select
className="flex-1"
options={pixelRatios}
selectedOption={pixelRatio}
onChange={(selectedOption) => {
setPixelRatio(selectedOption)
}}
/>
<input
type="text"
name="suffix"
className="relative flex-1 w-16 px-2 py-2 mt-1 text-sm border border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500"
placeholder="Suffix"
value={suffix}
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
const suffix = e.target.value as string
setSuffix(suffix)
}}
/>
<Select
className="flex-1"
options={extensions}
selectedOption={extension}
onChange={(selectedOption) => {
setExtension(selectedOption)
}}
/>
</div>
</div>
</div>
</div>
)
}
当我从任一侧边栏中选择最大的选项时,它会稍微移动侧边栏。它还稍微扩展了选择元素。
最佳答案
添加 flex: 1
仅对您要填充所有可用空间的元素。
您在边栏中的导出内容(或页脚)正在使用 position: absolute
并且由于填充,您需要像这样指定页脚的宽度:
width: calc(100% - 2 * padding)
通过这些更改,我到达了
this codesandbox .
关于javascript - 在使用 Tailwind CSS 时从 `ListBox` 设置 `@headlessui/react` 上的最大内容以获取选项的最大宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65841016/
“用 Haskell 进行函数式思考”中的练习之一是使用融合定律使程序更加高效。我在尝试复制答案时遇到了一些麻烦。 部分计算要求您将 maximum (xs++ map (x+) xs) 转换为 ma
我正在尝试获得 R 中最大/最小的可表示数字。 输入“.Machine”后 我有: $double.xmin [1] 2.225074e-308 $double.xmax [1] 1.797693e+
有没有办法更改浏览器验证消息 请检查所附图片。 我目前正在使用 wooCommerce 目前它显示小于或等于 X 个数字,我想更改为请求超过 X 个项目的报价。 请多多指教 最佳答案 您需要使用oni
我正在尝试将解决方案从 Excel 求解器复制到 R 中,但不知道从哪里开始。 问题: 每小时选择 5 个选项(5 行),以最大化“分数”的总和,而无需在多个小时内选择同一组 2 次。 换句话说: 最
Haskell 中是否有这样的功能: max_of_type :: (Num a) => a 所以: max_of_type :: Int == 2 ^ 31 - 1 // for example,
我有这两个表示时间范围(秒)的输入字段,我需要这样设置,以便“from/min”字段不能高于“to/max”,反之亦然。 到目前为止我得到了这个: jQuery(document).ready(fun
我有一个看起来像这样的表: http://sqlfiddle.com/#!9/152d2/1/0 CREATE TABLE Table1 ( id int, value decimal(10,
我会尝试尽可能简单地解释它: 首先是一些带有虚拟数据的数据库结构。 结构 tb_spec_fk feature value ----------------- 1 1 1
我有两个表。 表 1: +---------+---------+ | Lead_ID | Deal_ID | +---------+---------+ | 2323 | null |
我的数据库中有一个字段可以包含数字,例如8.00 或范围编号,例如8.00 - 10.00。 如果您将每个数字作为单独的数字,我需要从表中获取 MIN() 和 MAX()。例如当范围为 8.00 -
max(float('nan'), 1) 计算结果为 nan max(1, float('nan')) 计算结果为 1 这是预期的行为吗? 感谢您的回答。 max 在 iterable 为空时引发异常
我想问一下如何在 CSS 中创建一个页脚栏,它具有最小宽度(比如 650 像素),并且会根据窗口大小进行拉伸(stretch),但仅限于某个点(比如 1024 像素)。 我的意思是当窗口大小为例如 1
我尝试调整表格列宽(下一个链接上的“作者”列 http://deploy.jtalks.org/jcommune/branches/1?lang=en)。我已将最小/最大属性添加到 .author-c
在 C# 中,是否有用于将最小值和最大值存储为 double 值的内置类? 此处列出的要点 http://msdn.microsoft.com/en-us/library/system.windows
问题: 每个任务队列是否可以每秒处理超过 500 个任务? 每个 GAE 应用是否可以每秒处理超过 50,000 个任务? 详细信息: Task queue quota文档说: Push Queue
我想知道是否允许最大或最小堆树具有重复值?我试图仅通过在线资源查找与此相关的信息,但一直没有成功。 最佳答案 是的,他们可以。您可以在“算法简介”(Charles E. Leiserson、Cliff
首先,我是 .NET 开发人员,喜欢 C# 中的 LINQ 和扩展方法。 但是当我编写脚本时,我需要相当于 Enumerable extension methods 的东西 任何人都可以给我任何建议/
这是一个检查最大 malloc 大小的简单程序: #include std::size_t maxDataSize = 2097152000; //2000mb void MallocTest(vo
我想找到我的数据的最小值和最大值。 我的数据文件: 1 2 4 5 -3 -13 112 -3 55 42 42 而我的脚本: {min=max=$1} {if ($1max) {max=$1}
我想查询我的Elastic-Search以获取仅具有正值的最低价格价格。我的价格也可以为零和-1;所以我不希望我的最小聚合返回0或-1。我知道我应该向查询(或过滤器)添加脚本,但是我不知道如何。我当前
我是一名优秀的程序员,十分优秀!