Skip to content

Card 卡片

自定义样式

移步到 CSS Part

基本用法

TIP

背景图片是通过元素上的 style 属性中的 background | background-image 样式来设置的。

查看代码

css

css
.main-wrap {
  width: 100%;
  height: 20rem;

  display: flex;
}

html

html
<div class="main-wrap">
  <gr-hover-card
    title="官方周边"
    desc="products"
    color="blue"
    href="/"
    style="background-image: url(./assets/imgs/other/官方周边.png);"
  >
  </gr-hover-card>
  <gr-hover-card
    title="官方漫画"
    desc="cartoon"
    color="red"
    style="background-image: url(./assets/imgs/other/官方漫画.png);"
  ></gr-hover-card>
  <gr-hover-card
    title="WIKI攻略"
    desc="introduction"
    color="aqua"
    style="background-image: url(./assets/imgs/other/WIKI攻略.png);"
  ></gr-hover-card>
</div>

Attributes

参数说明类型可选值默认值
title标题名string--
desc副标题string--
color主题色string--
href链接string--

Css Part

用法可参考 MDN ::part()伪类

参数说明
container根容器
info-wrap遮罩层
title标题
desc副标题