Skip to content

Commit 8f9bf29

Browse files
committed
fix(render): custom cover background image
1 parent d67d25f commit 8f9bf29

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/core/render/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,12 @@ export function renderMixin (proto) {
104104
let path = m[1]
105105

106106
dom.toggleClass(el, 'add', 'has-mask')
107-
if (isAbsolutePath(m[1])) {
107+
if (!isAbsolutePath(m[1])) {
108108
path = getPath(getBasePath(this.config.basePath), m[1])
109109
}
110110
el.style.backgroundImage = `url(${path})`
111+
el.style.backgroundSize = 'cover'
112+
el.style.backgroundPosition = 'center center'
111113
}
112114
html = html.replace(m[0], '')
113115
}

0 commit comments

Comments
 (0)