- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个用 HTML 和 CSS 构建的画廊。图库中的每个元素都应该是可点击的,并且 on:hover 应该显示该特定元素包含的内容的简短描述。整个效果基于 Apple 在其上的 Newsroom site。 .
我的代码在 Firefox 和 Chrome 上都能完美运行,但我在 Safari (v12) 上一直有延迟。
我有以下 Jquery:
$(document).ready(function(){
$(".item").hover(function(){
$(this).find(".description_container").css("height", "auto").css("margin", "0 20px 20px 20px");
$(this).find(".description").css("opacity", "1");
$(this).find("img").css("opacity", "0.5");
$(this).find("video").css("opacity", "0.5");
$(this).css("box-shadow","0 0 30px 0 rgba(0,0,0,0.15)").css("cursor","pointer");
}, function(){
$(this).css("box-shadow","0 0 0 0 rgba(0,0,0,0.0)").css("cursor","default");
$(this).find("img").css("opacity", "1");
$(this).find("video").css("opacity", "1");
$(this).find(".description_container").css("height", "0px").css("margin", "0 20px");
$(this).find(".description").css("opacity", "0");
});
});
HTML:
<div class="gallery">
<div class="item">
<img src="placeholder.png">
<!-- The whole item is a link -->
<a href="https://example.com/" style="position: absolute; top: 0; left: 0; width:100%; height:100%;">
<div class="content">
<p class="tags"><span class="gato">#</span>
<span class="tag">Sample tag 1</span>
<span class="tag">Sample tag 2</span>
<!-- Title -->
<h2>This is an Item's Title!</h2>
<!-- Date -->
<p class="date">December 2018</p>
<!-- Description -->
<div class="description_container">
<p class="description">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div></div></a></div>
</div>
和 CSS:
* {
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
}
.gallery {
margin: 60px auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 10px;
}
.item {
width: 100%;
border-radius: 4px;
position: relative;
padding-bottom: 105px;
border-bottom: solid #D9E7F6 2px;
overflow: hidden;
box-shadow: 0 0 0 0 rgba(0,0,0,0.0);
background-color: black;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
}
.item img {
opacity: 1;
display: block;
width: 100%;
height: auto;
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-drag: none;
}
.item .content {
position: absolute;
width: 100%;
bottom: 0;
background-color: white;
text-align: left;
}
.item .tags {
margin: 20px 0 0 20px;
}
.item .tags .gato {
font-size: 12px;
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 500;
color: #9FB8D8;
margin-right: 5px;
}
.item .tags .tag {
font-size: 12px;
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 500;
color: #0071FF;
margin-right: 5px;
}
.item h2 {
font-size: 20px;
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 500;
color: black;
margin: 5px 20px;
}
.item .date {
font-size: 12px;
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 500;
color: #9B9B9B;
margin: 0 20px 20px 20px;
}
.item .description {
position: relative;
opacity: 0;
font-size: 12px;
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 500;
color: #9B9B9B;
margin: 0;
}
.item .description_container {
position: relative;
height: 0px;
margin: 0 20px;
}
最佳答案
实际上,如果你想获得 super 平滑的效果,你必须使用transform
(rotate
, scale
, translate
, matrix
, skew
...),仅限不透明度属性。您应该尽可能避免像以前那样设置高度和边距的动画。因为那些属性 cause repaints and/or reflow on the page .这是另一个很好的链接,提供了有关 which properties you should use 的更多详细信息以获得 60fps 的动画。
We’re going to cut straight to the chase. Modern browsers can animate four things really cheaply: position, scale, rotation and opacity. If you animate anything else, it’s at your own risk, and the chances are you’re not going to hit a silky smooth 60fps.
此外,当 CSS 可以胜任这项工作时,您还应该避免使用 JS 或 jQuery 来设置动画或选择元素。在这里,您的效果只能通过使用 :hover
伪类来实现。实际上,Apple(在您提供的页面上)仅使用 CSS 创建动画 -> :hover
。 jQuery,可能会导致在 DOM 中进行长时间的深度分析,并将一些垃圾插入到您想要的 60fps 动画中。在您的代码中,您添加了很多 js,以便以非常非常快的方式复制 css 可以单独实现的行为。常见的做法是:如果父元素悬停,则更新覆盖其子元素的所有类在您的 CSS 样式表(不是 Js)。
这是一个简单的例子:
.parent-el {
position: relative;
cursor: pointer;
}
.child-el-1 {
transform: translate3D(0,0,0);
transition: transform .4s ease;
}
.child-el-2 {
transform:rotate(0);
transition: transform .4s ease;
}
.parent-el:hover .child-el-1 {
transform: translate3D(100px,0,0);
}
.parent-el:hover .child-el-2 {
transform: rotate(45deg);
}
在您的情况下,这可能是:
.item { box-shadow: 0 0 0 0 rgba(0,0,0,0.0); ...} // A better approach way to achieve it, is to use :after/:before pseudo element that contains box-shadow that you will animate with opacity property (0-1).
.item:hover { box-shadow: 0 0 30px 0 rgba(0,0,0,0.15); ... }
.container { opacity: 0; ...}
.item:hover .container { opacity: 1; ...}
.item img, .item video{ opacity: 1; ...}
.item:hover img, .item:hover video{ opacity: .5; ...}
...
并且不要忘记为每个设置 transition
属性(此外,*
选择器在您的代码中将来处理起来可能会很棘手)。
最后,您可以尝试添加will-change
property这有助于提高动画性能(需要适度使用)。
关于 web 上的 fps 性能有很多要说/写的东西,但我相信这些简短的建议将帮助您解决 web 动画性能问题。
关于jquery - Safari 中的 CSS 动画滞后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53900842/
我有一个简单的应用程序,它读取数据库,然后经过一些操作将结果写入另一个数据库。 第一行代码使用给用户的消息和屏幕日志更新 ui,然后全部包装在带有 using 和其他 try/catch 的 try/
我有一个名为activity的表,其中有一个memberId和一个时间戳。我想找出在给定的月份中有多少成员执行了一项 Activity (即-在 Activity 表中有记录),但在过去12个月中,谁
我有前三列数据。第一个列表示 id 在前一天做了某件事。我试图通过添加一个新变量“new”来从 dat 转到 dat2,该变量执行三件事: 将 yest 的值复制到前一天。但日子并不总是连续的。因此,
我有一个简单的应用程序,它读取数据库,然后经过一些操作将结果写入另一个数据库。 第一行代码使用给用户的消息和屏幕日志更新 ui,然后全部包装在带有 using 和其他 try/catch 的 try/
我有 data.frame,它显示了股票的当前出价和要价以及我当时的信号。 time bid_price ask_price signal 10:10:01.000500
我无法让网站正常运行。它有许多移动背景并使用 css-invert 过滤器。 请看这里: http://epicstudios.de/blackwhite/ 我的问题是,即使是普通计算机也无法处理移动
我创建了一个矩形对象网格并将它们添加到一个 Pane 中。每个矩形都有一个连接到它的鼠标事件监听器,它由 MouseEvent.Entered 触发器触发。当用户将鼠标移到矩形上时,处理程序只是更改矩
感觉我的笔记本电脑不允许控制台应用程序以一定的速度运行,因为我也尝试过其他应用程序,并且它们也随机滞后。我的机器不老,也不应该这样做,它具有i7-4720HQ CPU @ 2.60GHz(8 CPUs
我现在正面临这个问题。当我的页面加载 (DOM) 时,我调用一个返回 1880 张图像的函数,这些图像存储在 Steam 服务器中。 这些图像在回调之后被添加到我的 DOM 中,该回调返回我的数组响应
我正在尝试创建一个每两秒执行一次函数的应用程序。为了实现这一点,我使用 Timer.scheduledTimer 函数。问题是该函数没有按照应有的那样每两秒执行一次。通常应用程序开始时的间隔是 2 秒
我得到了这个 gps 接收器方法,它将一些数据存储到数据库中。 // GPS private void addGPSListener() { globalconstant.db
我有一个 UISwitch,它可以在切换值时更改其上方 UILabel 的文本。每隔一段时间(大约 2% 的时间)文本不会改变。标签的文本被保存到文本文件中,因此我需要准确性。由于这个问题是间歇性的,
我有一个包含用户帖子的表格 View 。每个帖子都有图片、用户名和帖子本身。刷新控件的操作是使用来自 Parse 的数据重新加载表。除了拉动刷新时的极度延迟外,一切都完美无缺。不知道是因为每个单元格里
我有一个“详细信息”页面,其中显示俱乐部的信息。该页面是一个 UIViewController,由按钮和标签组成,以实现这种外观(就像分组的小表格)。当我在设备上加载此页面时,它比我的应用程序中的任何
我有 ActionSheet 的代码,它可以连接的东西有点慢? @IBAction func showAction(_ sender: UIButton) { let actionSheetC
我的桌面应用程序滞后。我认为 java.awt.image.BufferStrategy 中有问题。 private void render() { BufferStrategy bs
你好,我有一个包含多个页面的 viewpager(使用 fragment 状态寻呼机),以及一些 png 作为这些页面的背景。我已经遵循了在 Ui 中显示位图 (http://developer.an
我在 WPF 窗体上有一个 richtextbox 控件。它有 SpellChecking.IsEnabled 设置为 true 并且 VerticalScrollBarVisibility 设置为
在我的 android 应用程序中,我将数据存储在本地 SQLite 数据库中。在这个数据库的大小小于 8-9 MB 之前,一切都很顺利;然而,一旦数据库大小约为 9 MB,它就会继续在 logcat
我正在开发一个简单的 Android 应用程序,它只有一个 Activity ,一个 WebView。它在我的手机(Android 7.1.2 Nougat 版本)上运行良好,但我收到许多用户的投诉,
我是一名优秀的程序员,十分优秀!