LoginSignup
0
0

More than 1 year has passed since last update.

【Lightbox2】ポップアップ画像の枠を消す方法

Last updated at Posted at 2022-03-17

はじめに

ここでは「ポップアップ画像の枠を消す方法」のみを紹介するため、Lightbox2を用いたポップアップ画像の作り方については以下を参照

方法

CSS(またはStylusなど)に以下のようなコードを追加する

CSSの例
#lightbox .lb-image {
  border: none;
}
Stylusの例
#lightbox .lb-image
  border: none

全体のコード例とプレビュー

  • 「View Compiled」を押すと Pug -> HTML、Stylus -> CSS に切り替わる
  • 「0.5x」で見ることを推奨
  • GitHubにもコードあり(こちら

See the Pen Delaunay Triangulation by Probability Hill (@probabilityhill) on CodePen.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0