bilibili-bangumi-component
Version:
展示 bilibili 与 Bangumi 追番列表的 WebComponent 组件
5 lines (4 loc) • 482 B
JavaScript
import { h } from "@stencil/core";
export function Skeleton() {
return (h("div", { class: "bbc-skeleton-container bbc-bangumi-item" }, h("div", { class: "bbc-skeleton-avatar" }), h("div", { class: "bbc-skeleton-content bbc-bangumi-content" }, h("div", { class: "bbc-skeleton-row", style: { width: '30%' } }), h("div", { class: "bbc-skeleton-row", style: { width: '60%', height: '40px' } }), h("div", { class: "bbc-skeleton-row", style: { width: '90%', height: '32px' } }))));
}