将 Chrome 更新到 88 后,滑动图片库开始表现不佳。例如,请参阅此站点:
您可以在 FF 或 Safari 中查看它,看看它在 Chrome 中的表现如何。经过一些研究,我在下面的片段中将这种行为提炼了一点。
它似乎完全取决于正在转换的元素的宽度。我敢肯定还有其他方法可以对本网站上的滑块进行编码/样式化,这可能就是解决方案。但是,多年来,它一直以这种方式在许多网站上工作。想知道是否有人对如何绕过这种行为有想法。我尝试在 img 本身上使用图像渲染 CSS 属性,但无济于事。
var button = document.getElementsByTagName('button')[0];
var ul = document.getElementsByTagName('ul')[0];
button.addEventListener('click', function() {
ul.classList.toggle('move');
});
var select = document.getElementsByTagName('select')[0];
select.addEventListener('change', function(e) {
ul.setAttribute('style', `width: ${e.target.value}px`);
});
div {
overflow: hidden;
}
ul {
margin: 0;
padding: 0;
list-style: none;
transition: transform 0.68s ease;
transform: translate3d(0, 0, 0);
}
ul.move {
transform: translate3d(100px, 0, 0);
}
li {
list-style: none;
margin: 0;
padding: 0;
}
img {
height: 300px;
width: 533px;
}
footer {
margin-top: 40px;
}
Select different widths of the containing ul element in the dropdown below and then click the translate button to see the effect.
<div>
<ul>
<li style="width: 500px">
<img src="https://images.unsplash.com/photo-1593642702821-c8da6771f0c6?ixid=MXwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=3289&q=80" />
</li>
</ul>
</div>
<footer>
<label>
Width of wrapping element being translated
<select>
<option value="1000">1000px</option>
<option value="100000">100000px</option>
<option value="10000000">10000000px</option>
</select>
</label>
<button>translate</button>
</footer>