问题标签 [tailwind-ui]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
68 浏览

css-transitions - 切换不可见属性时,如何使用 Tailwind 实现 CSS 过渡效果?

我将 TailwindUI 用于登录页面,它包含一个下拉菜单,当它展开时,如下所示:

在此处输入图像描述

现在,当单击“解决方案”链接时,我使用一些非常简单的内联 JavaScript 来切换不可见属性,从而使菜单出现。代码看起来像这样:

我想知道如何实现过渡效果,使菜单的切换看起来不那么突然。TailwindUI 推荐以下设置:

这样做的最佳方法是什么?

0 投票
4 回答
1630 浏览

reactjs - 在 React 和 HeadlessUI 中单击外部时不要关闭对话框(模态)

我的问题很简单......我在我的应用程序中使用 HeadlessUI 的 Dialog 组件进行 React,当我点击退出模式时,我希望它不会关闭。在文档中,有对话框。处理此交互的叠加参数,但没有禁用它的设置。

有什么解决办法吗?这是我正在使用的组件的 HeadlessUI 文档的链接:https ://headlessui.dev/react/dialog

也许你知道 React 的那种“警报阻止模式”?

0 投票
0 回答
81 浏览

html - 在 tailwind UI 中为静态 html 站点重用页眉/页脚

我正在使用 tailwind UI 创建一个非常简单的静态 html/css 网站,并遵循本教程:https ://justinjackson.ca/tailwind-ui-netlify

页眉/页脚的最佳做法是什么,所以我不需要手动复制/粘贴导航到每个页面的 html,然后在更新导航时重新复制/粘贴?我不需要完整的反应,甚至不需要 CMS,这就像网站的普通和静态一样。

正在考虑即使是可以在构建时为我添加 html 的简单构建工具也可以工作,但找不到任何东西。打开其他选项。

0 投票
1 回答
486 浏览

css - 视频背景顶部的顺风 css 模式

我是 Tailwind 的新手,我有一个视频背景页面(基于该帖子https://daily-dev-tips.com/posts/tailwind-css-full-screen-video-header/),我试图添加一个模式( http://www.patternify.com/ ) 在该视频背景之上。我尝试了几种不同的方法,但所有这些方法都对背景的位置产生了奇怪的影响。

有人可以告诉我应该如何在 Tailwind 中完成吗?

0 投票
1 回答
109 浏览

vue.js - Tailwind UI: Why are transitions only working on enter?

I am using tailwind ui to create a page using Vue.js - v.2

I've looked over this SO thread and I believe I have my transitions in the correct spot.

When I click the menu to show the <MobileSidebar> component, everything works great. When I close the <MobileSidebar> component, the component is just removed from the screen. I do not see the sidebar "slide" off of the browser.

I'm passing the open state as a prop; emitting the status. That seems to be working fine as well.

How can I allow the transition to render before the element is hidden/removed from view?

#xA;#xA;
0 投票
1 回答
469 浏览

css - 顺风背景不透明度

我很好奇tailwinds bg opacity 背后的CSS。我只能在纯 CSS 中找到“不透明度”,但这会影响一切,而不仅仅是背景。有人可以解释一下吗?

0 投票
0 回答
600 浏览

html - 如何在纯 HTML/JS 中应用 Tailwind UI 动画

我正在尝试使用示例 tailwindui.com 组件。他们在评论中定义了动画部分,但我无法弄清楚我应该如何在我的代码中使用这些动画部分。我正在使用普通的 html/js,并且不希望为此使用任何框架/lib。

在这里,我试图显示/隐藏一个模态对话框。背景覆盖的动画 doe 给出为

我不知道如何将此信息编码到背景覆盖 div。

到目前为止,这是我尝试过的;

为了便于测试,我已将其放入代码笔中。 https://codepen.io/rishavs/pen/BadMQaN?editors=1000

0 投票
0 回答
151 浏览

javascript - 如何自动对焦 headlessUi(顺风)选择?

当我打开一页时,我需要选择已经打开。我使用这个 tailwindcss 选择

我试过这个

道具“自动对焦”存在,但似乎不起作用。有什么建议吗?

0 投票
3 回答
684 浏览

ruby-on-rails - 如何在rails应用程序中集成tailwindui JS

我在使用 esbuild 的 Rails 7 上。我正在使用tailwindUI。仅使用 css 组件时它可以正常工作。当一个组件使用 JS 时,它就不再工作了。例如,下拉菜单默认打开,我无法关闭它。我在 tailwind.config.js 中添加了 require('@tailwindcss/ui')

Rails 7.0.0.alpha2 ruby​​ 3.0.2p107 "@tailwindcss/ui": "^0.7.2"

任何想法?

0 投票
1 回答
99 浏览

tailwind-css - 我如何使用第一个:tailwindcss 前缀与 alpinejs x-for

我正在使用 alpinejs x-for 循环构建一个按钮组,其中第一个和最后一个按钮应该有 rounded-l-md 和 rounded-r-md 使用first:rounded-l-mdand last:rounded-r-mdlast:rounded-r-md工作正常,但是first:rounded-l-md不起作用,因为我认为用于循环的<template>循环被视为第一个元素。

我添加了一个 jsfiddle:https ://jsfiddle.net/20qega7d/