首页 前端知识 Vue设置背景图片

Vue设置背景图片

2024-05-12 17:05:25 前端知识 前端哥 587 464 我要收藏

第一种:是用前端的静态图片做背景:

只需要在外层div中加入

 <div :style="conTop"> <div> 

这个style的内容写在data中

// Your script here
export default {
  data() {
    return {
      login: {
        backgroundImage: 'url(' + require('@/assets/img/background.jpg') + ')',
        backgroundRepeat: 'no-repeat',
        backgroundSize: '100% 100%',
      },

一定是要加require包裹路径

第二种:在style里

 
<style scoped>
.page-background {
  background-image: url('./'); /* 替换为你的图片路径 */
  background-size: cover; /* 背景图片覆盖整个元素 */
  background-position: center; /* 背景图片居中 */
  background-repeat: no-repeat; /* 不重复背景图片 */
  height: 100vh; /* 可以根据需要设置高度 */
  width: 100%; /* 可以根据需要设置宽度 */
}
</style>

转载请注明出处或者链接地址:https://www.qianduange.cn//article/8363.html
标签
评论
发布的文章

Newtonsoft.Json

2024-05-23 20:05:19

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!