-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrameLayout.js
56 lines (50 loc) · 1.51 KB
/
FrameLayout.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
customElements.define(
'frame-layout',
class extends HTMLElement {
constructor() {
super()
this.attachShadow({ mode: 'open' })
}
render() {
if (this.children.length !== 1) {
console.warn('<frame-layout> can have just one child element')
}
let ratio = this.ratio.split(':')
// prettier-ignore
this.shadowRoot.innerHTML = `
<style>
:host {
aspect-ratio: ${ratio[0]} / ${ratio[1]};
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
::slotted(img),
::slotted(video){
inline-size: 100%;
block-size: 100%;
object-fit: cover;
}
</style>
<slot></slot>
`
// console.log('frame:', this.shadowRoot.innerHTML)
}
connectedCallback() {
this.render()
}
attributeChangedCallback() {
this.render()
}
static get observedAttributes() {
return ['ratio']
}
get ratio() {
return this.getAttribute('ratio') || '16:9'
}
set ratio(val) {
return this.setAttribute('ratio', val)
}
}
)