- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有两个 div 用于两个不同的按钮。两个 div 之间唯一的变化是一个具有 background: #E82171;
而另一个具有渐变 background: linear-gradient(to right, #e82171 , #ef3e36);
。
但是,我想了解为什么它们具有不同的悬停行为,即使它们具有相同的样式?
body{
background-color: blue;
}
/** BUTTON 1 **/
.formLink {
text-align: center;
display: inline-block;
box-sizing: border-box;
background: linear-gradient(to right, #e82171 , #ef3e36);
padding: 24px 40px;
border-radius: 100px;
font-size: 18px;
color: #fff;
text-decoration: none;
cursor: pointer;
font-weight: 900;
margin-right: 0;
margin-left: 0;
transition: all 0.6s;
outline:none;
}
.formLink:hover {
box-shadow: 0 0 20px #ffffff;
background: #404262;
}
/** BUTTON 2 **/
.btn {
display: inline-block;
padding: 20px;
border-radius: 100px;
text-align: center;
border: 0;
cursor: pointer;
transition: all 0.6s;
color: #ffffff;
outline: none;
background: #E82171;
font-size: 90%;
}
.btn:hover {
box-shadow: 0 0 20px #ffffff;
background: #404262;
}
<div class="formLink">Button 1</div>
<div class="btn">Button 2</div>
如您所见,将鼠标悬停在按钮 1
上即时。我基本上希望 button 1
在悬停时有一个缓慢的过渡,就像在 button 2
中一样。
为了测试,我将 background: #E82171;
的线性渐变更改为 button 1
,过渡效果完全符合我的要求。不确定为什么线性渐变会影响这个?
编辑:
在发现没有“直接”方法可以做到这一点后,我决定找到一个基于 this solution 的解决方法.
body{
background-color: blue;
}
.formLink {
text-align: center;
display: inline-block;
background: linear-gradient(to right,#e82171,#ef3e36);
padding: 24px 40px;
border-radius: 100px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
font-size: 18px;
color: #fff;
text-decoration: none;
cursor: pointer;
font-weight: 900;
transition: all .6s;
background: -moz-linear-gradient(to right,#e82171,#ef3e36);
background: -webkit-linear-gradient(to right,#e82171,#ef3e36);
background: -o-linear-gradient(to right,#e82171,#ef3e36);
background: linear-gradient(to right, #e82171, #ef3e36);
background-repeat: repeat-x;
background-repeat: repeat-y;
background-size: 100%;
background-position: 0 100% no-repeat;
-webkit-transition: all 0.6s linear;
-moz-transition: all 0.6s linear;
-o-transition: all 0.6s linear;
transition: all 0.6s linear;
}
.formLink:hover {
box-shadow: 0 0 20px #fff;
background: #404262;
background-position: 0 0;
}
/*************/
/** BUTTON 2 **/
.btn {
display: inline-block;
padding: 20px;
border-radius: 100px;
text-align: center;
border: 0;
cursor: pointer;
transition: all 0.6s;
color: #ffffff;
outline: none;
background: #E82171;
font-size: 90%;
}
.btn:hover {
box-shadow: 0 0 20px #ffffff;
background: #404262;
}
<div class="formLink">Download</div>
<div class="btn">Button 2</div>
我认为我的下载 按钮与按钮 2 几乎相同?大家可以多多指教。但是,我不确定为什么我的下载 按钮悬停在它上面时会“闪烁”?背景消失一秒钟然后又出现?关于为什么的想法?我需要它的功能与按钮 2 完全一样。
最佳答案
为避免闪烁行为,您需要在其后面使用按钮的副本 - 否则在不透明度动画期间背景将是透明的。您不必使用第二个 div,可以改用伪元素:
https://jsfiddle.net/qLmpxgd8/2/
body{
background-color: blue;
}
.formLink, .formLink:after {
position: relative;
text-align: center;
display: inline-block;
background: linear-gradient(to right,#e82171,#ef3e36);
padding: 24px 40px;
border-radius: 100px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
font-size: 18px;
color: #fff;
text-decoration: none;
cursor: pointer;
font-weight: 900;
transition: all .6s;
background: -moz-linear-gradient(to right,#e82171,#ef3e36);
background: -webkit-linear-gradient(to right,#e82171,#ef3e36);
background: -o-linear-gradient(to right,#e82171,#ef3e36);
background: linear-gradient(to bottom, #e82171, #ef3e36);
background-repeat: repeat-x;
background-repeat: repeat-y;
background-size: 100%;
background-position: 0 100% no-repeat;
-webkit-transition: all 0.6s linear;
-moz-transition: all 0.6s linear;
-o-transition: all 0.6s linear;
transition: all 0.6s linear;
}
.formLink:after {
content: "Download";
position: absolute;
left: 0;
top: 0;
}
.formLink:hover:after {
box-shadow: 0 0 20px #fff;
background: #404262;
background-position: 0 0;
}
/*************/
/** BUTTON 2 **/
.btn {
display: inline-block;
padding: 20px;
border-radius: 100px;
text-align: center;
border: 0;
cursor: pointer;
transition: all 0.6s;
color: #ffffff;
outline: none;
background: #E82171;
font-size: 90%;
}
.btn:hover {
box-shadow: 0 0 20px #ffffff;
background: #404262;
}
<div class="formLink">Download</div>
<div class="btn">Button 2</div>
关于html - div 上线性渐变背景的不同悬停行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51157575/
在我的 previous question ,已经确定,当纹理四边形时,面部被分解为三角形,纹理坐标以仿射方式插值。 不幸的是,我不知道如何解决这个问题。 provided link很有用,但没有达到
是否有简单的解决方案可以在 Qt 中为图像添加运动模糊?还没有找到任何关于模糊的好教程。我需要一些非常简单的东西,我可以理解,如果我可以改变模糊角度,那就太好了。 最佳答案 Qt 没有运动模糊过滤器。
我想构建一个有点复杂的轴,它可以处理线性数据到像素位置,直到某个值,在该值中所有内容都被归入一个类别,因此具有相同的数据到像素值。例如,考虑具有以下刻度线的 y 轴: 0%, 10%, 20%, 30
我需要确保两个 View 元素彼此相邻且垂直高度相同。我会使用基线约束来做到这一点,但目前我正在使用线性、可滚动的布局( ScrollView 中的线性布局),当我点击一个元素时,它不允许我从中获取基
考虑正则表达式 ".*?\s*$" 和一个不以空格结尾的字符串。 示例 " a" .最后\s永远无法匹配 a这就是为什么 匹配器迭代: \s\s\s\s\s - fails .\s\s\
Closed. This question needs to be more focused。它当前不接受答案。 想要改善这个问题吗?更新问题,使它仅关注editing this post的一个问题。
我正在尝试阅读英特尔软件开发人员手册以了解操作系统的工作原理,这四个寻址术语让我感到困惑。以上是我的理解,如有不对请指正。 线性地址 : 对一个孤立的程序来说,似乎是一长串以地址0开头的内存。该程序的
有很多方法可以使用正则表达式并相应地使用匹配/测试匹配来检查字符串是否有效。我正在检查包含字母(a-b)、运算符(+、-、/、*)、仅特殊字符(如(')'、'(')和数字(0-9)的表达式是否有效 我
我正在使用 iris 数据集在 R 中练习 SVM,我想从我的模型中获取特征权重/系数,但我想我可能误解了一些东西,因为我的输出给了我 32 个支持向量。假设我要分析四个变量,我会得到四个。我知道在使
我正在使用 iris 数据集在 R 中练习 SVM,我想从我的模型中获取特征权重/系数,但我想我可能误解了一些东西,因为我的输出给了我 32 个支持向量。假设我要分析四个变量,我会得到四个。我知道在使
如何向左或向右滑动线性布局。在该线性布局中,默认情况下我有一个不可见的删除按钮,还有一些其他小部件,它们都是可见状态,当向左滑动线性布局时,我需要使其可见的删除按钮,当向右滑动时,我需要隐藏该删除按钮
我正在编写一个 R 脚本,运行时会给出因变量的预测值。我的所有变量都被分类(如图所示)并分配了一个编号,总类数为101。(每个类是歌曲名称)。 所以我有一个训练数据集,其中包含 {(2,5,6,1)8
如果源栅格位于 linear RGB color space使用以下 Java 代码进行转换,应用过滤器时(最后一行)会引发 java.awt.image.ImagingOpException: Un
我想为我的多个 UIImageView 设置动画,使其从 A 点线性移动到 B 点。 我正在使用 options:UIViewAnimationOptionCurveLinear - Apple 文档
我第一次无法使用 CSS3 创建好看的渐变效果。右侧应该有从黑色到透明的渐变透明渐变。底部是页脚,所以它需要在底部另外淡化为透明。 如果可能的话,一个例子: 页面的背景是一张图片,所以不可能有非透明淡
我有一组线性代数方程,Ax=By。其中A是36x20的矩阵,x是20x1的 vector ,B是36x13,y是13x1。 排名(A)=20。因为系统是超定的,所以最小二乘解是可能的,即; x = (
我有一个带有年月数据列(yyyymm)的 Pandas 数据框。我计划将数据插入每日和每周值。下面是我的 df。 df: 201301 201302 201303
假设我想找到2条任意高维直线的“交点”。这两条线实际上不会相交,但我仍然想找到最相交的点(即尽可能靠近所有线的点)。 假设这些线有方向向量A、B和初始点C、D,我可以通过简单地设置一个线性最小二乘问题
如果我想编写一个函数(可能也是一个类),它从不可变的查找表(调用构造函数时固定)返回线性“平滑”数据,如下所示: 例如func(5.0) == 0.5。 存储查找表的最佳方式是什么? 我正在考虑使用两
给定一条线 X像素长如: 0-------|---V---|-------|-------|-------max 如果0 <= V <= max , 线性刻度 V位置将是 X/max*V像素。 如何计
我是一名优秀的程序员,十分优秀!