背景颜色和滚动问题。

时间:2018-06-28 15:50:51

标签: css background css-animations

我需要一些帮助。我的最后一个项目将于明天到期,该应用程序的移动响应视图已完全关闭。除了仅提供指向URL的链接外,我不知道还有其他解释方法。

https://venpresath.github.io/FinalProject/#!/home

看来,放到旋转记录中的动画使屏幕的宽度大于背景的宽度。

我尝试了溢出:隐藏;但这并不能解决问题。

3 个答案:

答案 0 :(得分:0)

尝试将workObjectMap.computeIfPresent(key, (k,v) -> { v.memberIdSet.addAll(memberIdSet); v.memberPositionSet.addAll(memberPositionSet); return v; }); // If it.remove() in run() is called at this point, // there is a risk of the same work being done twice workObjectMap.putIfAbsent(key, new WorkObjectValue(memberIdSet, memberPositionSet)); 直接放在body标签上,这应确保body内容中发生的任何事情都不应水平滚动。

答案 1 :(得分:0)

您可以使用变换比例和变换原点CSS。请在css下面添加。这是演示http://recordit.co/UK63B2vKiR

.homeContent{transform: scale(.8, .8);}
body{background: darkslateblue!Important; overflow-x: hidden;}
*{max-width:100vw;}

答案 2 :(得分:0)

一种解决方法是隐藏记录的溢出内容,例如:

.homeContent{
    overflow-x: hidden;
    position: relative;
}