您好,登錄后才能下訂單哦!
這篇文章主要講解了Vue-cli中如何實現為單獨頁面設置背景圖片鋪滿全屏,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
啥也不說了,大家還是直接看代碼吧~
<template> <div id="logo"> </div> </template> <script> import meadiaurl from '../../api/mediaurl' export default { name: "logo" </script> <style scoped> #logo{ background: url("../../assets/images/Login.png"); background-size: 100% 100%; height: 100%; } </style>
如果像以上代碼寫,高度為100%時,會發現背景圖片只是內容撐起來的,卻不能使整個屏幕鋪滿背景圖;
解決方案:
我們要讓#logo脫離文檔流,為他添加個fixed屬性
#logo{ background: url("../../assets/images/Login.png"); background-size: 100% 100%; height: 100%; position: fixed; width: 100% }
補充知識:vue 實現全屏顯示和全屏按鈕svg圖
1,第一步安裝screenfull
npm install --save screenfull
2, 新建screenfull.vue組件,
<template> <div> <svg t="1508738709248" class="screenfull-svg" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2069" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32" @click="click"> <path d="M333.493443 428.647617 428.322206 333.832158 262.572184 168.045297 366.707916 64.444754 64.09683 64.444754 63.853283 366.570793 167.283957 262.460644Z" p-id="2070"/> <path d="M854.845439 760.133334 688.61037 593.95864 593.805144 688.764889 759.554142 854.56096 655.44604 958.161503 958.055079 958.161503 958.274066 656.035464Z" p-id="2071"/> <path d="M688.535669 428.550403 854.31025 262.801405 957.935352 366.921787 957.935352 64.34754 655.809313 64.081481 759.919463 167.535691 593.70793 333.731874Z" p-id="2072"/> <path d="M333.590658 594.033341 167.8171 759.804852 64.218604 655.67219 64.218604 958.270996 366.342596 958.502263 262.234493 855.071589 428.421466 688.86108Z" p-id="2073"/> </svg> </div> </template> <script> import screenfull from 'screenfull' //引入screenfull export default { name: 'Screenfull', props: { width: { type: Number, default: 22 }, height: { type: Number, default: 22 }, fill: { type: String, default: '#48576a' } }, data(){ return { isFullscreen: false //不可少 } }, methods: { click(){ if(!screenfull.enabled){ this.$message({ message: '你的瀏覽器不支持全屏', type: 'warning' }) return false } screenfull.toggle() } } } </script> <style scoped> .screenfull-svg { width: 20px; height: 20px; cursor: pointer; fill: red; } </style>
3, 在需要的組件引入該組件即可
看完上述內容,是不是對Vue-cli中如何實現為單獨頁面設置背景圖片鋪滿全屏有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。