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 3 years have passed since last update.

【初心者でもわかる】選択中の入力フォームに装飾を入れる

Posted at

どうも7noteです。選択中の入力フォームにCSSを当てる方法

現在選択されているフォームに装飾をいれます。

使うのはこちら↓

:focus

擬似クラス:focusを使えばCSSで装飾を入れることができます。

sample.gif

↓↓ちょっとゲームチックにすることも可能!!↓↓
game.png

使い方

index.html
<form>
  <input type="text"><br>
  <input type="text"><br>
  <input type="text">
</form>
style.css
input:focus {
  background: #fcc;
}

まとめ

装飾をがんばればゲーム画面のような装飾も可能!
オリジナルの入力フォームを作ってみてください。

style.css
form {
  background: radial-gradient(circle farthest-side, #1F6C85, #0A3C5A, #07334F); /* 
円形グラデーション */
  padding: 20px;
}
	
input {
  width: 100%;
  color: #fff;
  background: none;
  border: none;
  caret-color: transparent;   /* デフォルトの点滅カーソルを非表示 */
}
	
input:focus {
  outline: none;
  background: linear-gradient(to top, #1D81C4, transparent);
}

sample2.gif

(カーソル、指にしておけばよかった・・・)

おそまつ!

~ Qiitaで毎日投稿中!! ~
【初心者向け】WEB制作のちょいテク詰め合わせ

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?