首先设置页面宽高
html,body{
width:100%;
height:100%
}
添加设置背景图
body{
width:100%;
height:100%;
background-size: cover;
position:absolute;
background-image: url('../../assets/images/bg.jpg');
background-position:50% 50%;
background-repeat :no-repeat;
background-attachment:fixed;
}
搞定。
网友评论