Vue.js:在元素处于正确位置之前不显示元素
Posted
技术标签:
【中文标题】Vue.js:在元素处于正确位置之前不显示元素【英文标题】:Vue.js: do not show element until it is in correct position 【发布时间】:2018-12-22 23:54:22 【问题描述】:我正在学习 Vue,并且非常喜欢它。我有一个标签,我想在页面加载时将其固定在浏览器窗口的底部。当用户单击选项卡时,它会向上滑动以显示一些内容。
一切正常很棒。我可以让标签贴在页面底部 - 点击事件也很有效。
我遇到的问题是我需要计算标签(和div
)的高度才能正确设置 CSS 属性。当页面加载时,您可以看到选项卡向下滑动到位。我想隐藏选项卡,直到所有内容都计算完毕并且位于正确的位置。
这是我正在使用的:
app.js
new Vue(
el: '#info',
delimiters: ['$', ''],
data:
active: false,
inactive: true,
styles:
'bottom': 0
,
,
methods()
toggle: function (event)
event.preventDefault();
this.active = !this.active;
this.inactive = !this.inactive;
,
mounted()
let tabHeight = this.$refs.infoTab.clientHeight;
let boxHeight = this.$refs.infoBox.clientHeight; // 473px
this.styles.bottom = -boxHeight + 'px';
);
HTML
<div class="info not-active" id="info" @click="toggle" ref="infoTab"
v-cloak
v-bind:class=" active: active "
v-bind:style="styles">
<!-- content -->
</div>
style.css
[v-cloak]
display: none;
/* more classes */
.info
width: 100%;
position: fixed;
&.inactive
bottom: -100%;
&.active
bottom: 0 !important;
我知道我很接近,我只是不希望用户看到标签滑入到位。它应该只是在那里。我尝试使用created
挂钩,但clientHeight
不可用。
非常感谢任何建议!
【问题讨论】:
【参考方案1】:我认为你可以只使用 CSS 来解决这个问题,不需要使用任何 Vue 的生命周期钩子,我用 vanilla JS 示例制作了一支笔:
let infoNode = document.getElementById('info');
infoNode.addEventListener('click', () =>
if (infoNode.style.top)
// clear inline top style
infoNode.style.top = '';
else
// set top to client height + 2 * border thickness
infoNode.style.top = `calc(100% - $infoNode.clientHeightpx - 4px)`;
);
#info
font-size: 16px;
width: 200px;
border: 2px solid hsl(0, 0%, 80%);
padding: 8px;
border-radius: 4px;
cursor: pointer;
position: fixed;
/* 100% height of the viewport subtracting:
tab height: padding, margin, & font size */
top: calc(100% - (8px + 8px + 24px));
/* we center the tab horizontally here using
50% the width of the viewport - 50% the fixed
width of the tab */
left: calc(50% - 200px/2);
transition: top 0.5s;
.title
font-size: 24px;
font-weight: 500;
margin-bottom: 8px;
display: block;
p
margin: 0;
<div id="info">
<span class="title">Click on Me</span>
<p>
This is the content of the tab, isn't it great? I think so too, and it can be of any arbitrary length!
</p>
</div>
基本上,诀窍是使用calc
和top
而不是-100%
和bottom
进行定位,然后您的标签最初会呈现在正确的位置,您不必担心它会出现访问者首次加载您的页面时的位置。
【讨论】:
非常感谢!我有这样的狭隘视野,学习了一些新技术,并没有想过要走自己的路。以上是关于Vue.js:在元素处于正确位置之前不显示元素的主要内容,如果未能解决你的问题,请参考以下文章