gpt4 book ai didi

javascript - 滚动时 Material VueJS 组件未固定在底部页面

转载 作者:行者123 更新时间:2023-11-27 23:28:17 27 4
gpt4 key购买 nike

我正在使用 <md-progress-bar>我的 VueJS 应用程序上的组件,但我想在滚动页面时将你的位置固定在底部屏幕上。我试过 set style position: fixed; , absoluterelative但没有人工作。

<template>
<div>
...
<md-progress-bar style="position: absolute;" md-mode="indeterminate" v-show="true"></md-progress-bar>
</div>
</template>

还有……

<md-progress-bar
style="position: fixed;
bottom: 0;
right: 0;
width: 100%;"
md-mode="indeterminate"
v-show="true"
></md-progress-bar>

最佳答案

Vue.use(VueMaterial.default)

new Vue({
el: '#app'
})
div.md-progress-bar--fixed {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}

.spacer {
height: 1000vh;
}

.as-console-wrapper {
display: none !important;
}
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic|Material+Icons">
<link rel="stylesheet" href="https://unpkg.com/vue-material/dist/vue-material.min.css">
<link rel="stylesheet" href="https://unpkg.com/vue-material/dist/theme/default.css">

<div id="app">
<div class="spacer"></div>
<md-progress-bar class="md-progress-bar--fixed" md-mode="indeterminate" v-show="true"></md-progress-bar>
</div>

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vue-material"></script>
<script>
</script>

关于javascript - 滚动时 Material VueJS 组件未固定在底部页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57638848/

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