学習記録

学習したことをより深く理解するために、アウトプットする場所として利用しています。

2023-07-01から1ヶ月間の記事一覧

header を上部に固定する際のメモ

// ページ内リンクの際にheader分の高さを確保する html { scroll-padding-top: 80pxf } // header固定の設定 header { position: sticky; top: 0; z-index: 1; }

ViteのrollupOptions>inputに適合するオブジェクトを生成する

解説コード const path = require("path"); const glob = require("glob"); function getHtml() { const htmlFiles = glob.sync("**/*.html", { cwd: path.resolve(__dirname), ignore: ["**/modules/**/*.html", "**/assets/**/*.html", "**/dist/**/*.html…

Micromodal.js Document Translation (Installation)

Installation Micromodal is available on npm and can be installed from the command line via npm or yarn Micromodalはnpmで利用可能で、コマンドラインからnpmまたはyarnでインストールできる。 npm install micromodal --save // via npm yarn add mic…

Micromodal.js Document Translation (Introduction)

Introduction Micromodal.js is a lightweight, configurable and a11y-enabled modal library written in pure JavaScript Micromodal.jsは、純粋なJavaScriptで書かれた、軽量で設定可能なa11y対応のモーダルライブラリです。 It enables you to create WA…