gpt4 book ai didi

html - 如何强制 Safari 重新绘制位置 :fixed elements on scroll?

转载 作者:技术小花猫 更新时间:2023-10-29 12:40:39 25 4
gpt4 key购买 nike

我在桌面和移动设备上使用 Safari 时遇到问题,它在用户滚动时重新绘制 position:fixed 元素的速度非常慢。

safari 难以处理的具有 position:fixed 的元素是 #intro 和 .portfolio-item .expanded-content 的页脚元素。滚动上的#intro 不一定要重新绘制到正确的 z-index(它应该在用户滚动时位于其他元素后面)。移动设备上的页脚元素不会停留在 iOS Safari 滚动内容上方的固定位置。在 iOS safari 上滚动时出现锯齿状(然而,iOS chrome 是流畅的,一切都按预期工作)。

我做了一个 fiddle ,去掉了所有的图像、字体和 JS,你瞧,safari 可以毫无问题地重新绘制位置:滚动上的固定元素。

因为这是一个作品集网站,所以剥离我的图片显然不是一种选择。我真的希望把它变成一个真正的单页网站,而不是使用 AJAX 或任何东西来按需加载内容。我是否对 safari 要求太多,以至于无法拥有那么多元素并能够使用 position:fixed on scroll 重新绘制元素? Chrome 和 FF 似乎没有问题; IE9、10、11 也没有。

我不完全确定这是重绘问题,但您可以在下面的视频中看到,如果我通过触发非滚动事件(如鼠标悬停事件)强制 Safari 重绘,它会重绘并放置在该位置:fixed 我在样式表中指定的 z-index 中的元素。因此,结合 fiddle 工作得很好,这就是为什么我假设这是一个重绘问题,而不是我的代码的问题。

我希望找到一种方法来解决这个问题,而无需诉诸更多的 JS 或动态加载的内容,以保持相同的设计(不要仅仅因为一个浏览器是有问题)并尝试保持快速和流畅的性能。我考虑过每次用户滚动时使用 JS 来强制 safari 重新绘制,但在我看来这会对所有浏览器的性能产生负面影响。我真的可以利用其他人的想法和观点。

网站:http://sarahjean.co

fiddle :http://jsfiddle.net/sjc8611/n9z3W/

视频:https://dl.dropboxusercontent.com/u/24724104/position-fixed-repaint-lag-safari.mov

html:

    <nav data-scroll-header="" id="main-navigation">
<ul>
<li><a href="#work" data-scroll="">Work</a>

</li>
<li><a href="#about" data-scroll="">About</a>

</li>
<li><a href="#services" data-scroll="">Services</a>

</li>
<li><a href="#contact" data-scroll="">Contact</a>

</li>
</ul>
</nav>
<div class="header" id="header">Header Content</div>
<section id="intro" class="container">
<article class="content">
<h1>Introduction Text</h1>

<p>Welcome to my super cool portfolio site. Check out how awesome I am. You should totally hire me.</p>
</article>
</section>
<section id="work" class="container">
<article class="content">
<h1>Work</h1>

<nav id="portfolio-navigation">
<ul>
<li><a href="#work1">See My Work 1</a>

</li>
<li><a href="#work2">See My Work 2</a>

</li>
</ul>
</nav>
</article>
<article id="work1" class="portfolio-item">
<div class="expanded-content">
<h2 class="center">Here is some of my work!</h2>

<p>Lorem ipsum dolor sit amet..</p>
<footer><a href="#work">Close</a>

</footer>
</div>
</article>
<article id="work2" class="portfolio-item">
<div class="expanded-content">
<h2 class="center">More of my cool work!</h2>

<h1>Proin Quis Tortor Orci. Etiam At Risus</h1>

<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit..</p>
<footer><a href="#work">Close</a>

</footer>
</div>
</article>
</section>
<section id="contact" class="container">
<article class="content">
<h1>Contact</h1>

<ul id="contact-list">
<li>I would include a list of ways to contact me here</li>
<li>Emails</li>
<li>Telephones</li>
<li>The postal services</li>
</ul>
</article>
</section>
<section id="services" class="container">
<article class="content">
<h1>Services</h1>
<p>Lorem ipsum dolor sit amet..</p>
</article>
</section>

CSS:

body {
background: #fff8ec;
margin: 0 auto;
height: 100%;
}
html {
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 135%;
color: #4b3d2f;
height: 100%;
}
h1, h2, h3, h4, h5 {
font-family: Arial, sans-serif;
}
h1 {
color: #aba499;
text-align: center;
font-size: 2em;
}
.portfolio-item h2 {
font-size: 1.8em;
}
a, a:link, a:visited {
color: #c85128;
text-decoration: none;
}
a:hover {
color: #4b3d2f;
}
p {
margin: 1em 0;
line-height: 135%;
}
img {
max-width: 100%;
height: auto;
}
.container {
width: 100%;
position: relative;
background-color: #e5e2de;
padding: 100px 0;
}
.container > .content {
width: 80%;
margin: 0 auto;
max-width: 800px;
background-color: transparent;
}
#header {
background-color: #c85128;
height: 95%;
position: relative;
z-index: 3;
display: table;
width: 100%;
}
#intro {
background-color: transparent;
position: fixed;
top: 5%;
left: 0px;
height: 25%;
padding: 5% 0;
z-index: 0;
}
#intro > .content {
background-color: #fff8ec;
width: 70%;
padding: 5%;
border-radius: 20px;
box-shadow: 0px 1px 3px #e5e2de;
}
#work {
margin-top: 55%;
background-color: #dedad5;
}
#contact {
background-color: #d8d3cd;
}
#services {
background-color: #d1cbc4;
}
#about {
background-color: #cac4bc;
}
section h1 {
padding: 50px 0;
}
article .expanded-content h2, article .expanded-content p {
margin: 50px auto;
}
#main-navigation {
display: table;
width: 100%;
background-color: #aba499;
position: fixed;
top: 0;
left: 0;
height: 3em;
overflow: visible;
z-index: 2;
}
#main-navigation a {
color: #fff8ec;
font-family:'NovecentowideBookRegular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
display: block;
}
#main-navigation a:hover {
color: #4b3d2f;
text-shadow: 0em -0.05em 0em #e5e2de;
}
#main-navigation ul {
display: table-row;
height: 3em;
overflow: visible;
}
#main-navigation ul li {
display: table-cell;
width: 20%;
padding: .8em;
text-align: center;
vertical-align: middle;
}
.portfolio-item {
max-height: 0px;
height: 0px;
overflow: hidden;
position: fixed;
top: 3em;
left: 0%;
-webkit-transition: height 700ms ease;
-moz-transition: height 700ms ease;
-ms-transition: height 700ms ease;
-o-transition: height 700ms ease;
transition: height 700ms ease;
}
#work1:target, #work2:target {
max-height: 1000px;
opacity: 1;
width: 80%;
height: 70%;
padding: 5%;
top: 5%;
left: 5%;
background-color: #fff;
box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.5);
z-index: 10;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
#work1:target .expanded-content, #work2:target .expanded-content {
max-width: 900px;
margin: 0 auto;
}
#work1:target .expanded-content footer, #work2:target .expanded-content footer {
display: block;
width: 90%;
text-align: right;
background-color: #c85128;
position: fixed;
top: 5%;
left: 5%;
z-index: 11;
}
#work1:target .expanded-content footer a, #work2:target .expanded-content footer a {
display: block;
padding: 1em;
color: #e5e2de;
height: 1em;
}

最佳答案

你没疯。 position: fixed 元素也没有重新绘制,我遇到了问题。还没有找到解决方案。

编辑 找到解决方案。您可以通过在其上触发 CSS 动画来改变它的大小来重绘几乎任何东西。这是我正在使用的片段:

.foo
position: fixed
&.active
animation: repaint 1ms

@keyframes repaint
from
width: 99.999%
to
width: 100%

关于html - 如何强制 Safari 重新绘制位置 :fixed elements on scroll?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22842992/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com