- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一组在悬停时展开和收缩的 Font-Awesome 社交媒体图标。但是,当我停止将鼠标悬停在每个图标上时会出现问题,图标中间的图像会“跳跃”而不是像图标的其余部分那样平滑地折叠。这是代码:
body {
margin: 0;
padding: 0;
font-family: 'Kreon', serif;
}
a {
text-decoration: none; /* no underlines */
}
/*
** Rules for the flames in the footer
*/
footer {
position: fixed;
bottom: 0;
width: 100%;
height: 10px;
background-color: #36454f; /* Charcoal gray */
}
.flame {
bottom: 10px;
position: absolute;
display: inline-block;
width: 80px;
height: 80px;
border-radius: 50% 0% 50% 50%;
background-color: orangered;
background-image: linear-gradient(to right top, yellow 15%, orange 25%, orangered 55%);
transform: rotate(-45deg) skew(-10deg, -10deg);
transition: 0.5s;
}
.flame:hover {
height: 100px;
width: 100px;
transform: rotate(-45deg) skew(-10deg, -10deg);
transition: 0.5s;
}
.flame-wrapper {
position: relative;
text-align: center;
}
/* Position each flame icon, before and after hover */
/* Each of the different icons should be 10px apart */
#flame-facebook {
left: -155px;
transition: left 0.5s;
}
#flame-facebook:hover {
left: -165px;
}
#flame-github {
left: -80px;
transition: left 0.5s;
}
#flame-github:hover {
left: -90px;
}
#flame-linkedin {
left: -5px;
transition: left 0.5s;
}
#flame-linkedin:hover {
left: -15px;
}
#flame-freecodecamp {
left: 70px;
transition: left 0.5s;
}
#flame-freecodecamp:hover {
left: 60px;
}
/* Style the Font-Awesome social media icons */
.fa {
font-size: 20px;
position: relative;
top: 20px;
width: 40px;
height: 40px;
border-radius: 50%;
transform: rotate(75deg) skew(30deg, -30deg);
color: white;
}
/* Move the actual icon down from the top to "center" it */
.fa::before {
position: relative;
top: 10px;
}
.flame:hover .fa {
height: 60px;
width: 60px;
transform: rotate(75deg) skew(30deg, -30deg);
transition: 0.5s;
}
.flame:hover .fa::before {
top: 20px;
transition: top 0.5s;
}
<footer>
<div id="flame-facebook" class="flame-wrapper">
<div class="flame">
<a href="https://www.facebook.com/travis.lannoye" target="_blank" class="fa fa-facebook"></a>
</div>
</div>
<div id="flame-github" class="flame-wrapper">
<div class="flame">
<a href="https://github.com/tlannoye11" target="_blank" class="fa fa-github"></a>
</div>
</div>
<div id="flame-linkedin" class="flame-wrapper">
<div class="flame">
<a href="https://www.linkedin.com/in/travis-lannoye-272a201b/" target="_blank" class="fa fa-linkedin"></a>
</div>
</div>
<div id="flame-freecodecamp" class="flame-wrapper">
<div class="flame">
<a href="https://www.freecodecamp.org/tlannoye11" target="_blank" class="fa fa-free-code-camp"></a>
</div>
</div>
</footer>
当您将鼠标悬停在其中一个火焰图标上,然后将鼠标移开时,您会发现问题所在。对类似问题的一些研究表明问题出在悬停时添加了边框,但我不明白这是如何应用的,因为我在悬停事件期间没有更改边框......我认为?
最佳答案
我认为你在这里所说的“跳跃”是指在火焰上悬停时有时会发生的滞后,有时它会直接从非悬停大小直接变为悬停大小而没有过渡。
这是由重新声明 height
和 width
引起的,这对浏览器来说是比使用 transform: scale(1.2)
更密集的任务,例如。
您为每种不同类型添加的特定 left
声明也会导致重绘并使事情变得滞后,删除它会停止问题。
您需要为您的效果调整确切的值,以及 transform-origin
属性(旋转和缩放会取消此操作),但像这样的事情应该让您正确的道路。
更多信息:https://www.smashingmagazine.com/2016/12/gpu-animation-doing-it-right/
如果您可以使用 flexbox,请参阅此代码块下方的进一步改进。
body {
margin: 0;
padding: 0;
font-family: 'Kreon', serif;
}
a {
text-decoration: none; /* no underlines */
}
/*
** Rules for the flames in the footer
*/
footer {
position: fixed;
bottom: 0;
width: 100%;
height: 10px;
background-color: #36454f; /* Charcoal gray */
}
.flame {
bottom: 10px;
position: absolute;
display: inline-block;
width: 80px;
height: 80px;
border-radius: 50% 0% 50% 50%;
background-color: orangered;
background-image: linear-gradient(to right top, yellow 15%, orange 25%, orangered 55%);
transform: rotate(-45deg) skew(-10deg, -10deg);
transition: 0.5s;
}
.flame:hover {
transform: rotate(-45deg) skew(-10deg, -10deg) scale(1.2);
transform-origin: bottom center;
transition: 0.5s;
}
.flame-wrapper {
position: relative;
text-align: center;
}
/* Position each flame icon, before and after hover */
/* Each of the different icons should be 10px apart */
#flame-facebook {
left: -155px;
transition: left 0.5s;
}
#flame-github {
left: -80px;
transition: left 0.5s;
}
#flame-linkedin {
left: -5px;
transition: left 0.5s;
}
#flame-freecodecamp {
left: 70px;
transition: left 0.5s;
}
/* Style the Font-Awesome social media icons */
.fa {
font-size: 20px;
position: relative;
top: 20px;
width: 40px;
height: 40px;
border-radius: 50%;
transform: rotate(75deg) skew(30deg, -30deg);
color: white;
}
/* Move the actual icon down from the top to "center" it */
.fa::before {
position: relative;
top: 10px;
}
.flame:hover .fa {
height: 60px;
width: 60px;
transform: rotate(75deg) skew(30deg, -30deg);
transition: 0.5s;
}
.flame:hover .fa::before {
top: 20px;
transition: top 0.5s;
}
<footer>
<div id="flame-facebook" class="flame-wrapper">
<div class="flame">
<a href="https://www.facebook.com/travis.lannoye" target="_blank" class="fa fa-facebook"></a>
</div>
</div>
<div id="flame-github" class="flame-wrapper">
<div class="flame">
<a href="https://github.com/tlannoye11" target="_blank" class="fa fa-github"></a>
</div>
</div>
<div id="flame-linkedin" class="flame-wrapper">
<div class="flame">
<a href="https://www.linkedin.com/in/travis-lannoye-272a201b/" target="_blank" class="fa fa-linkedin"></a>
</div>
</div>
<div id="flame-freecodecamp" class="flame-wrapper">
<div class="flame">
<a href="https://www.freecodecamp.org/tlannoye11" target="_blank" class="fa fa-free-code-camp"></a>
</div>
</div>
</footer>
如果你可以使用 flexbox,我会避免你在这里做的很多绝对定位并像这样重构:
body {
margin: 0;
padding: 0;
font-family: 'Kreon', serif;
}
a {
text-decoration: none; /* no underlines */
}
/*
** Rules for the flames in the footer
*/
footer {
display: flex;
justify-content: center;
position: fixed;
bottom: 0;
width: 100%;
border-bottom: 10px solid #36454f; /* Charcoal gray */
}
.flame {
display: inline-block;
width: 80px;
height: 80px;
border-radius: 50% 0% 50% 50%;
background-color: orangered;
background-image: linear-gradient(to right top, yellow 15%, orange 25%, orangered 55%);
transform: rotate(-45deg) skew(-10deg, -10deg);
transition: 0.5s;
}
.flame:hover {
transform: rotate(-45deg) skew(-10deg, -10deg) scale(1.2);
transition: 0.5s;
}
.flame-wrapper {
text-align: center;
}
/* Position each flame icon, before and after hover */
/* Each of the different icons should be 10px apart */
#flame-facebook {
transition: left 0.5s;
}
#flame-github {
transition: left 0.5s;
}
#flame-linkedin {
transition: left 0.5s;
}
#flame-freecodecamp {
transition: left 0.5s;
}
/* Style the Font-Awesome social media icons */
.fa {
font-size: 20px;
position: relative;
top: 20px;
width: 40px;
height: 40px;
border-radius: 50%;
transform: rotate(75deg) skew(30deg, -30deg);
color: white;
}
/* Move the actual icon down from the top to "center" it */
.fa::before {
position: relative;
top: 10px;
}
.flame:hover .fa {
height: 60px;
width: 60px;
transform: rotate(75deg) skew(30deg, -30deg);
transition: 0.5s;
}
.flame:hover .fa::before {
top: 20px;
transition: top 0.5s;
}
<footer>
<div id="flame-facebook" class="flame-wrapper">
<div class="flame">
<a href="https://www.facebook.com/travis.lannoye" target="_blank" class="fa fa-facebook"></a>
</div>
</div>
<div id="flame-github" class="flame-wrapper">
<div class="flame">
<a href="https://github.com/tlannoye11" target="_blank" class="fa fa-github"></a>
</div>
</div>
<div id="flame-linkedin" class="flame-wrapper">
<div class="flame">
<a href="https://www.linkedin.com/in/travis-lannoye-272a201b/" target="_blank" class="fa fa-linkedin"></a>
</div>
</div>
<div id="flame-freecodecamp" class="flame-wrapper">
<div class="flame">
<a href="https://www.freecodecamp.org/tlannoye11" target="_blank" class="fa fa-free-code-camp"></a>
</div>
</div>
</footer>
关于css - 悬停后元素 "jumps",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59079443/
在 risc-v 规范中,它说 j 是 jal 的伪代码。我对它的工作原理感到困惑,因为 j (25 位立即数)和 jal (20 位立即数)的立即值范围不同 - 还有 jalr 带 12 位立即数。
希望这是我提出问题的正确位置。为什么不能使用这两个指令递归调用子例程? 提前致谢! 最佳答案 如果您“跳转并链接”,返回地址将存储在寄存器中。如果再次“跳转链接”,返回地址就会被新的地址覆盖,破坏原来
我正在尝试在运行服务器端口的数据库和另一台服务器之间创建一个 SSH 隧道,如下所示。 MySQL:3306 Server-A:3306 我想使用 Server-A:3306作为连接到数据库的数据库
我喜欢包含键:值的“跳转字典”的概念,其中值是函数。不过,我不确定我是否应该喜欢这个概念。 我想替换一长串 if if-else if 语句。 (我应该使用 switch 语句吗?) 有没有不用eva
我是 js 的新手我正在尝试通过 Prop isActive .但我收到一个错误。你们能告诉我为什么我会收到下面的错误代码吗?我在这一行收到了错误 import React from 'react'
我一直在创建自己的 UIControl 子类以用于我的调整 iDunnoU .我已经完成了 UIControl,但展开/折叠动画除外。这个动画的问题是它在展开/折叠时会向下/向上“跳跃”,而不是像我原
我正在尝试让相机在我的 LWJGL 程序中跳跃。我尝试编写一个 if/else 语句,它会说:“当你到达这个位置时,转到默认的起始位置。”到目前为止,它还在继续飞翔。这是我的代码: if (flyUp
在过去的一个半星期里,我一直在使用 Java 和 Swing 从头开始编写游戏。到目前为止,游戏运行一切顺利,除了一件事:跳跃。我正在尝试实现抛物线跳跃,以便玩家不只是向上传送一点点。相反,我希望
我如何处理 JuMP 中的稀疏矩阵? 例如,假设我想施加以下形式的约束: A * x == 0 哪里A是一个稀疏矩阵和 x变量向量。我假设 A 的稀疏性可以被利用来使优化更快。如何在 JuMP 中利用
我有一个文本字段,您通常在其中输入数字。但是,用户必须单击键盘上的数字按钮才能进入数字屏幕。有没有办法直接跳转到键盘上的屏幕并可以输入数字? 如有任何意见和建议,我们将不胜感激。 提前致谢。 最佳答案
粘性导航栏“跳跃” 我最近制作了一个导航栏,它在滚动时粘在屏幕顶部(进入网页时它从中间开始)。我是在 Mac 上做的,一切正常。但是,当在我的 Windows 桌面上进入网页时,整个导航栏要么跳动,跳
我有一个功能类似于 w3schools 的侧边栏,而 w3schools 的侧边栏显示相同的问题。侧边栏“跳跃”并在该区域留下难看的空间,当向下滚动页面和移动 chrome 的导航栏隐藏时,它在顶部留
我正在尝试创建一组在悬停时展开和收缩的 Font-Awesome 社交媒体图标。但是,当我停止将鼠标悬停在每个图标上时会出现问题,图标中间的图像会“跳跃”而不是像图标的其余部分那样平滑地折叠。这是代码
我的垂直自动滚动似乎在某些点不规律地停止,我想要一个平滑的滚动。其次,我希望垂直滚动自动重置(几乎无限循环或暗示它永无止境而不仅仅是跳跃)。我将如何着手完成这个?到目前为止,这是我的代码:http:/
我在 YouTube 上发布了一个视频,您可以在其中看到该问题。我放慢了视频速度,这样你就能真正看到跳跃。 链接:https://www.youtube.com/watch?v=17Wftj2-MRM
我在 Drupal 8 中构建了一个站点(但我认为这是一个 CSS 问题)。 当您重新加载页面时,页面“跳转”。它也会在您第一次访问时执行此操作,但如果您按“f5”,您会看得更清楚。我尝试删除 Log
如您所见,此背景将向下动画。我拥有我想要的一切正常工作,除了在动画完成后,它会跳转,这是我不想要的。我只希望它无休止地滚动而无需跳转到它。下面的 CodePen。 关于如何在大约 10 秒后继续滚动而
更新:这基本上是我想要的,但 div 固定在底部 - http://www.wduffy.co.uk/blog/wp-content/demos/jquery-scrolling-element/ 有
我正在 Python 3.4 中使用 numpy 和矩阵构建一个神经网络草图,以学习简单的 XOR。我的符号如下: a 是神经元的事件 z 是一个神经元的输入 W 是一个权重矩阵,大小为 R^{#上一
请原谅标题措辞不佳,希望我能在这里解释这个问题。 我用 jQuery 编写了一个简单的画廊控件,其中有六个图像和两个按钮控件,允许用户循环浏览整个图像集合。我的这部分工作正常,但是每当我单击一个按钮在
我是一名优秀的程序员,十分优秀!