有一个非常奇怪的行为,在移动浏览器上发生了flexbox。
请参阅此GIF以了解发生的事情
这仅发生在移动浏览器上,我目前正在Google Pixel手机上使用Chrome Mobile。我有一个调整大小的脚本运行,该脚本在页面上的多个元素大小,因为无法正确利用这样的100VH:
无法正确使用100VH。window.onresize = function() {
document.getElementById("backgroundImage").style.height = window.innerHeight;
document.getElementById("mainScreen").style.height = window.innerHeight;
if (window.innerWidth > 750) {
document.getElementById("scrollContent").style.height = window.innerHeight - "96";
} else {
document.getElementById("scrollContent").style.height = window.innerHeight - "72";
}
};
在GIF中所见的项目是弯曲容器中的项目。当我向上滚动以隐藏导航栏时,会发生这种行为,然后单击flex链接之一。
我正在使用vuejs,并且通过检查道具更改来填充下面的内容。Flex链接将字符串传递到将项目视图更改为所选项目的函数。
我也有一个脚本来添加一个类,可以更改所选链接上的背景颜色,并在所有其他链接上删除该类,这就是我正在更改活动链接背景的方式。
var webComp = Vue.component('design-comp', {
template: "#webComp",
props:['trans-state'],
components: {
'project-comp': projectComp,
},
data: function() {
return {
activeProj: 'default',
}
},
methods: {
changeProj: function(proj) {
this.activeProj = proj;
var a = document.getElementsByClassName('projClick');
for (i=0; i<a.length; i++) {
a[i].classList.remove('projActive');
}
event.currentTarget.classList.add('projActive');
document.getElementById('webContainer').scrollTop = 0;
}
},
created: function() {
this.activeProj = "default";
}
});
这是我的sass文件的相关部分:
#webContainer {
margin-top: 50px;
height: calc(100% - 50px);
.projHeader {
display: flex;
justify-content: center;
position: absolute;
left: 0;
top: 0;
width: 100%;
background-color: $headerColor;
box-sizing: border-box;
.projClick {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
height: 50px;
box-sizing: border-box;
background-color: $contentColor;
border-right: 2px solid $headerColor;
border-left: 2px solid $headerColor;
border-bottom: 4px solid $headerColor;
border-top: 4px solid $headerColor;
flex-basis: 50px;
transition: background-color 0.3s;
&.projActive {
background-color: $linkActiveColor;
}
p {
color: $fontColor;
font-family: $titleFont;
font-size: 2em;
}
}
}
}
这是相关的HTML:
<div class="viewContainer" id="webContainer">
<div class="transitionBox"></div>
<div class="stickyImageBottomLeft"><img src="./img/AfricaMountainPixelR.gif" /></div>
<div class="stickyImageBottomRight"><img src="./img/AfricaMountainPixel.gif" /></div>
<div class="projHeader">
<div class="projClick projActive" v-on:click="changeProj('default')">
<p>0</p>
</div>
<div class="projClick" v-on:click="changeProj('kyount')">
<p>1</p>
</div>
<div class="projClick" v-on:click="changeProj('prodigal')">
<p>2</p>
</div>
<div class="projClick" v-on:click="changeProj('joy')">
<p>3</p>
</div>
<div class="projClick" v-on:click="changeProj('cgl')">
<p>4</p>
</div>
<div class="projClick" v-on:click="changeProj('mikeg')">
<p>5</p>
</div>
<div class="projClick" v-on:click="changeProj('reddit')">
<p>6</p>
</div>
<div class="projClick" v-on:click="changeProj('westbeach')">
<p>7</p>
</div>
</div>
<div class="contentContainer">
Project Page is loaded here
</div>
</div>
我希望有人知道发生了什么,因为我真的看不到发生这种情况的原因。
尝试以下:
#webContainer {
margin: 0;
padding-top: 50px;
height: 100%;
box-sizing: border-box; /* if you didn't apply it before */
...
在Kosh的帮助下,我能够找到一个完美工作的解决方案,同时仍保持元素的预期样式。
#webContainer {
margin-top: 50px;
box-sizing: border-box;
position: relative;
height: 100%;
.projHeader {
...
position: fixed;
...
}
}
我仍然觉得最初的问题是某种错误,但这至少是解决方法。