Skip to content

非公式本サイトは非公式の日本語ドキュメントであり、Cloudflare 公式サイトではありません。最新情報はdevelopers.cloudflare.comをご確認ください。

カード

最終更新 Markdown で表示Agent セットアップ

The Card component is used 33 times on 31 pages.

See all examples of pages that use Card

Used 33 times.

Pages

Partials

    カードは Nimbus が提供する組み込みコンポーネントです。

    カード

    import { Card } from "~/components";
    
    <Card title="Check this out" icon="ph:puzzle-piece">
    	Interesting content you want to highlight.
    </Card>

    リストカード

    import ListCard from "~/components/cf/ListCard.astro";
    
    <ListCard title="Links" icon="ph:puzzle-piece">
    
    - foo
    - bar
    - baz
    
    </ListCard>

    リンクタイトルカード

    import { LinkTitleCard } from "~/components";
    
    <LinkTitleCard
    	title="Check this out"
    	icon="ph:puzzle-piece"
    	href="/style-guide/build-the-page/components/cards/"
    >
    	Interesting content you want to highlight.
    </LinkTitleCard>

    カードアイコン

    任意で、cards に対応するアイコンを Starlight の Icons から選べます。

    役に立ちましたか?