- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个具有视差滚动功能的网站,它在 Retina 显示器上非常滞后,但在 macbook 分辨率越低的情况下越流畅。我不知道为什么,几周来我一直在寻找答案。我还使用了我在 css 下面添加的 javascript。这是 css/javascript:
.background {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
overflow: auto;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 100;
will-change: transform;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
height: 130vh;
position: fixed;
text-shadow: black 2px 2px 2px;
width: 100%;
-webkit-transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
color: #fff;
}
.background:first-child {
background-color: rgba(156, 146, 137, 1);
-webkit-transform: translateY(-15vh);
}
.background:first-child .content-wrapper {
-webkit-transform: translateY(15vh);
}
.background:nth-child(2) {
background-image: url(2.jpg);
}
.background:nth-child(3) {
background-image: url(3.jpg);
}
.background:nth-child(4) {
background-image: url(1.jpg);
}
.background:nth-child(5) {
/*NEW TITLE HERE*/
background-image: url(3.jpg);
}
/* Set stacking context of slides */
.background:nth-child(1) {
z-index: 5;
}
.background:nth-child(2) {
z-index: 4;
}
.background:nth-child(3) {
z-index: 3;
}
.background:nth-child(4) {
z-index: 2;
}
.background:nth-child(5) {
z-index: 1;
}
.background:nth-child(n+2):before {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: -moz-linear-gradient(left, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.1) 100%);
background: -webkit-linear-gradient(left, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.5) 20%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0.5) 80%,rgba(0,0,0,0.1) 100%);
background: linear-gradient(to right, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.5) 20%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0.5) 80%,rgba(0,0,0,0.1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a000000', endColorstr='#1a000000',GradientType=1 );
}
.content-wrapper {
height: 100vh;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
text-align: center;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
color: #fff;
will-change: transform;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translateY(40vh);
-webkit-transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
}
iframe {
width: 33vw;
height: 66vh;
float: right;
}
p {
word-wrap: break-word;
}
.image-style {
width:10vw;
height:7vh;
vertical-align: middle;
}
.background.up-scroll {
-webkit-transform: translate3d(0, -15vh, 0);
}
.background.up-scroll .content-wrapper {
-webkit-transform: translateY(15vh);
}
.background.up-scroll + .background {
-webkit-transform: translate3d(0, 30vh, 0);
}
.background.up-scroll + .background .content-wrapper {
-webkit-transform: translateY(30vh);
}
.background.down-scroll {
-webkit-transform: translate3d(0, -130vh, 0);
}
.background.down-scroll .content-wrapper {
-webkit-transform: translateY(40vh);
}
.background.down-scroll + .background:not(.down-scroll) {
-webkit-transform: translate3d(0, -15vh, 0);
}
.background.down-scroll + .background:not(.down-scroll) .content-wrapper {
-webkit-transform: translateY(15vh);
}
h1{
font-family: trench;
font-size: 3vh;
font-weight: 900;
}
.header {
/*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
font-weight: 200;
line-height: 160%;
font-size: 2vh;
}
.content-title {
font-size: 10vh;
line-height: 1.4;
}
.map-title-background {
/*background-color: #1477C5;*/
background-color: #4D4D4F;
/*background-size: 100vw 100vh;*/
box-shadow: 0px 10px 5px #888888;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
margin: 0px;
padding: 0px;
}
.map-title {
font-weight: 300;
font-size: 8vh;
}
.project-title {
font-size: 10vh;
line-height: 1.4;
font-family: trench;
}
.background-fade {
height: 130vh;
width: 100vw;
}
.skills-programming {
/*margin-top: 10vh;*/
}
.body-wrapper {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
text-align: center;
margin: auto;
position: fixed;
top: 0;
width: 50%;
left: 50%;
transform: translateX(-50%);
}
function parallaxScroll(evt) {
console.log("what about this")
if (isFirefox) {
//Set delta for Firefox
delta = evt.detail * (-120);
} else if (isIe) {
//Set delta for IE
delta = -evt.deltaY;
} else {
//Set delta for all other browsers
delta = evt.wheelDelta;
}
if (ticking != true){
if (delta <= -scrollSensitivitySetting) {
//Down scroll
ticking = true;
if (currentSlideNumber !== (totalSlideNumber - 1)) {
currentSlideNumber++;
nextItem();
}
slideDurationTimeout(slideDurationSetting);
}
if (delta >= scrollSensitivitySetting) {
//Up scroll
ticking = true;
if (currentSlideNumber !== 0) {
currentSlideNumber--;
previousItem();
}
slideDurationTimeout(slideDurationSetting);
}
}
}
function touchScroll(ts, te) {
delta = te - ts;
if (ticking != true) {
if (delta <= -scrollSensitivitySetting) {
//Down scroll
ticking = true;
if (currentSlideNumber !== totalSlideNumber - 1) {
currentSlideNumber++;
nextItem();
}
slideDurationTimeout(slideDurationSetting);
}
if (delta >= scrollSensitivitySetting) {
//Up scroll
ticking = true;
if (currentSlideNumber !== 0) {
currentSlideNumber--;
}
previousItem();
slideDurationTimeout(slideDurationSetting);
}
}
}
// ------------- SET TIMEOUT TO TEMPORARILY "LOCK" SLIDES ------------- //
function slideDurationTimeout(slideDuration) {
setTimeout(setTicking, slideDuration);
}
function setTicking() {
ticking = false;
}
var mousewheelEvent = isFirefox ? "DOMMouseScroll" : "wheel";
var ts;
// ------------- ADD EVENT LISTENER ------------- //
$(document).ready(function () {
console.log("called once")
totalSlideNumber = $("section").length;
window.addEventListener(mousewheelEvent, _.throttle(parallaxScroll, 60), false);
window.addEventListener("touchstart", function(e) {
ts = e.touches[0].clientY;
}, false);
window.addEventListener("touchend", function(e) {
var te = e.changedTouches[0].clientY;
touchScroll(ts, te);
}, false);
});
// ------------- SLIDE MOTION ------------- //
function nextItem() {
var $previousSlide = $("section").eq(currentSlideNumber - 1);
$previousSlide.removeClass("up-scroll").addClass("down-scroll");
}
function previousItem() {
var $currentSlide = $("section").eq(currentSlideNumber);
$currentSlide.removeClass("down-scroll").addClass("up-scroll");
}
最佳答案
在查看您的代码后,我有一些建议。
删除 will-change
属性。虽然它应该有助于转换,但过度使用会而且经常会占用太多资源并降低页面速度。 Check out the MDN docs关于特性。
尽可能使用 transform3d
。我看到您在几个地方使用了 transformY,我发现 transform3d 通常会为转换提供一些很好的优化。
我喜欢尽可能避免transition:all ...
。老实说,我没有任何证据支持它,但我发现最好的做法是只转换您明确要转换的内容。
最后,这可能很简单,因为您的 macbook 较旧或打开了很多程序。你能确认它在快速计算机上做同样的事情吗?也就是说,如果您的 macbook 较旧。
希望对您有所帮助!如有任何更新,请随时发表评论。
关于javascript - CSS 转换极度滞后的视网膜显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38256786/
我有一个简单的应用程序,它读取数据库,然后经过一些操作将结果写入另一个数据库。 第一行代码使用给用户的消息和屏幕日志更新 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 版本)上运行良好,但我收到许多用户的投诉,
我是一名优秀的程序员,十分优秀!