- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个圆形按钮,里面有一个加号图标。悬停时,圆圈会变成药丸形状。
我想实现两件事:
我能够顺利地将圆圈动画化为药丸形状,但我无法控制加号图标(它移动到药丸形状的中间而不是向左移动)。我也不知道如何添加文本。
谢谢
.My-circle-Button { width: 50px; height: 50px; border-radius: 25px;
background: none; transition: width .5s ease; color:#000; border: 4px solid
#000; }
.My-circle-Button:after { content: "+"; font-size: 2.6em; line-height:
37px;}
.My-circle-Button:hover { width: 240px;}
<button class="My-circle-Button"></button>
<button class="My-circle-Button"></button>
最佳答案
请查看此代码段。
.My-circle-Button { width: 50px; height: 50px; border-radius: 25px;
background: none; transition: width .5s ease; color:#000; border: 4px solid
#000; position: relative; padding-left: 30px; color: #000; overflow: hidden; text-align: center;}
.My-circle-Button span { white-space: nowrap; transition: all ease .3s; opacity: 0; font-size: 16px; line-height: 20px; transition: all ease .3s;}
.My-circle-Button:after { content: "+";
font-size: 2.6em;
height: 50px;
left: 13px;
position: absolute;
top: 0;
bottom: 0; }
.My-circle-Button:hover { width: 240px;}
.My-circle-Button:hover span{ opacity: 1; transition-delay:.3s; transition: all ease .3s; }
<button class="My-circle-Button"><span>Read More</span></button>
关于html - 使用 CSS 在悬停时将圆形加按钮设置为药丸形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49789597/
我正在我的一个工具上开发“进度”指示器,我希望能够通过蓝色药丸(正常颜色)显示哪些步骤已完成,然后未完成的步骤将显示灰色(悬停时)颜色。 基本上我需要能够创建一个药丸并拥有一个 .complete(b
以下代码在小屏幕或超小屏幕(默认情况下由 twitter bootstrap 定义)上显示时会产生宽度不等的“药丸”。
我想在每个新站点上打开加载另一个包含内容的随机选项卡。我想我必须使用一些 Java 脚本来完成,但它不起作用。 您可以在这里查看页面:LINK 感谢您的帮助。 最佳答案 use this code :
所以 Bootstrap 文档描述了 pill with dropdowns 和 pill as tab bars,但是这两者可以结合吗?理想情况下,我希望有一个药丸式的部分导航栏,下拉到特定项目。选
我对 Bootstrap 的药丸有疑问。特别是我尝试动态添加药丸。然而,我一直在工作,直到单击一个选项卡并触发一个事件来更改事件选项卡类,所有动态添加的内容都显示在一个药丸/选项卡上。
我想在我的网站中使用 bootstrap 的内置选项卡,但我需要用户能够自行添加或删除选项卡。我看过几个 jqueryUI 选项卡的演示,允许用户添加或删除它们,而且我知道 bootstrap 的选项
我想在 Bootstrap 4 中将一些选项卡集中在导航栏上,但似乎没有任何效果。另外,我无法缩短选项卡下的行,如果您也能给我一些提示,我将不胜感激。提前致谢。 我的代码: .nav-tabs>li,
我是一名优秀的程序员,十分优秀!