- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在使用 scale()
属性,直到几周前它都运行良好。浏览器更新后,现在我看到一个不稳定/跳跃的动画,有人可以指出我的问题到底出在哪里吗?
请看下面的 jsFiddle ;在翻转中,ICON(显示“A”)将从底部滑入并同时缩放,但它会下降到起点,从而产生不平稳/跳跃的动画效果。
.ca-menu {
padding:0;
margin:20px auto;
width: 1020px;
}
.ca-menu li {
width: 200px;
height: 300px;
overflow: hidden;
position: relative;
float:left;
background: #fff;
-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
margin-right: 4px;
-webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
-o-transition: all 300ms linear;
-ms-transition: all 300ms linear;
transition: all 300ms linear;
}
.ca-menu li:last-child {
margin-right: 0px;
}
.ca-menu li a {
text-align: left;
width: 100%;
height: 100%;
display: block;
color: #333;
position: relative;
}
.ca-icon {
font-family:'WebSymbolsRegular', cursive;
font-size: 60px;
color: #333;
text-shadow: 0px 0px 1px #333;
line-height: 150px;
position: absolute;
width: 100%;
height: 50%;
left: 0px;
top: 0px;
text-align: center;
-webkit-transition: all 400ms linear;
-moz-transition: all 400ms linear;
-o-transition: all 400ms linear;
-ms-transition: all 400ms linear;
transition: all 400ms linear;
}
.ca-content {
position: absolute;
left: 0px;
width: 100%;
height: 50%;
top: 50%;
}
.ca-main {
font-size: 30px;
opacity: 0.8;
text-align: center;
-webkit-transition: all 200ms linear;
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-ms-transition: all 200ms linear;
transition: all 200ms linear;
}
.ca-sub {
text-align:center;
font-size: 14px;
color: #666;
line-height: 40px;
opacity: 0.8;
position: absolute;
bottom: 0;
width: 100%;
-webkit-transition: all 200ms linear;
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-ms-transition: all 200ms linear;
transition: all 200ms linear;
}
.ca-menu li:hover {
background-color: #000;
}
.ca-menu li:hover .ca-icon {
color: #ff2020;
-webkit-animation: moveFromBottom 300ms ease;
-moz-animation: moveFromBottom 300ms ease;
-ms-animation: moveFromBottom 300ms ease;
}
.ca-menu li:hover .ca-main {
color: #ff2020;
-webkit-animation: smallToBig 300ms ease;
-moz-animation: smallToBig 300ms ease;
-ms-animation: smallToBig 300ms ease;
}
.ca-menu li:hover .ca-sub {
color: #000;
background-color: #ff2020;
-webkit-animation: moveFromBottom 500ms ease;
-moz-animation: moveFromBottom 500ms ease;
-ms-animation: moveFromBottom 500ms ease;
}
@-webkit-keyframes smallToBig {
from {
-webkit-transform: scale(0.1);
}
to {
-webkit-transform: scale(1);
}
}
@-moz-keyframes smallToBig {
from {
-moz-transform: scale(0.1);
}
to {
-moz-transform: scale(1);
}
}
@-ms-keyframes smallToBig {
from {
-ms-transform: scale(0.1);
}
to {
-ms-transform: scale(1);
}
}
@-webkit-keyframes moveFromBottom {
from {
-webkit-transform: translateY(100%);
}
to {
-webkit-transform: translateY(0%);
}
}
@-moz-keyframes moveFromBottom {
from {
-moz-transform: translateY(100%);
}
to {
-moz-transform: translateY(0%);
}
}
@-ms-keyframes moveFromBottom {
from {
-ms-transform: translateY(100%);
}
to {
-ms-transform: translateY(0%);
}
}
<ul class="ca-menu">
<li>
<a href="#">
<span class="ca-icon">A</span>
<div class="ca-content">
<h2 class="ca-main">Exceptional Service</h2>
<h3 class="ca-sub">Personalized to your needs</h3>
</div>
</a>
</li>
</ul>
最佳答案
从 .ca-icon
中删除所有 transition
属性
此外,对于 @keyframes
,您只需要 -moz-
和 -webkit-
前缀,-ms-
@keyframes
的前缀不存在,最好也包含一个无前缀的@keyrames
。尽管这不是导致问题的原因,但只是告诉过您。
关于html - CSS 过渡跳动/生涩,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32344438/
大家好,我使用的是翻译动画,如下所示: 现在它工作正常,除了它在动画时似乎闪烁/ SCSS ?这是标准吗? 我确实有 6 个不同的 View 同时被激活,这是原因吗? 这是我设置动画的方式: //
我正在将我的表格从 XML 提要加载到数组中,然后创建单元格,如下面的代码所示。加载时有时会非常不稳定。我以为那只是我滚动时下载的图像,但我删除了它们进行测试,有时它仍然不稳定。无法弄清楚我做错了什么
我一直在使用 scale() 属性,直到几周前它都运行良好。浏览器更新后,现在我看到一个不稳定/跳跃的动画,有人可以指出我的问题到底出在哪里吗? 请看下面的 jsFiddle ;在翻转中,ICON(显
这是网站 --> http://giantsofafrica.org/camps/top-50-camp/ 每当我在这个网站上使用 fancybox 时,都会出现这种奇怪的、不稳定的、滑动的 Acti
我正在使用 XMLParser 为 ListView 获取带有日期的 XML。解析器将日期发送到 LazyAdapter,然后由 LazyAdapter 构建列表。 当我在我的应用程序中滚动时,Lis
我正在尝试将图像动画化到 Canvas 上。 在 html 文件中我有 dog.png,它是一个 Image Sprites。 在 CSS 文件中: #dog{ object-positio
我正在尝试使用 Bootstrap 4 从我的导航中获得一个很好的幻灯片,但它真的很生涩。这是我的代码: var videoWidth = 1280; var video = $(".vid
我有一个 UITableView,其中包含多个带有标题的部分,可折叠/展开。还有一个带有自定义 UIView 的 tableHeaderView。 使用自定义部分标题 UIView 和自定义 UITa
在我的 vmware、主机 linux 上安装 maverick 后,鼠标不稳定,我该如何解决? 最佳答案 这是我尝试过的累积解决方案,我认为更新 VMWARE 工具对我有用。 可能的解决方案:1.
我在使用 UITableView 时遇到了这个问题,tableView 的 cells 高度不同,自动布局约束设置不当。当您向下滚动到 tableView 的底部并加载更多数据(无论使用 reload
我在 GLSurfaceView 上使用 GLES 2.0 用 Java 制作了一个小型 2D 游戏。但我在性能方面遇到了一些问题。我在 OnDrawFrame 函数中完成了所有游戏状态的渲染和更
我是一名优秀的程序员,十分优秀!