0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Apple PayボタンをWebサイトに組み込むの巻き

Last updated at Posted at 2018-07-20

#Apple Payボタンの微調整について
まぁ詳しいCSSについては、Apple Pay on the Web のサンプルコードを参照ください。

サンプルのコードを貼ってちゃんとボタンが設定できたのだが、
幅と高さを微調整したかったので

css
.apple-pay-button {
  /* 追加 */
  height: 50px;
  width: 100%;
}

widthとheightを設定すればいい。
ボタンが大きくなるとApple Payアイコンも自動的に大きくなるよ:relaxed:

#Supportsについて

ここからはCSSについてのメモ

Supports
指定した条件が使用できるかどうかを条件判定するSupportsですが、JavaScriptではCSS.supports()というものがある。

https://blog.kazu69.net/2016/09/14/using-at-rule-supports-development-with-css-property-of-future/ コードについてはこちらを参考に)

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?