初心者向けjQuery入門

初心者向けjQuery入門講座です

未分類

疑似クラスと疑似要素

投稿日:2017年8月2日 更新日:

疑似クラスと疑似要素

疑似クラス

疑似クラスとは疑似的に処理をセレクタに追加するものです。
:をつけます。
疑似クラス一覧
:active
:any
:checked
:default
:dir()
:disabled
:empty
:enabled
:first
:first-child
:first-of-type
:fullscreen
:focus
:hover
:indeterminate
:in-range
:invalid
:lang()
:last-child
:last-of-type
:left
:link
:not()
:nth-child()
:nth-last-child()
:nth-last-of-type()
:nth-of-type()
:only-child

疑似要素

疑似要素はセレクタに追加するものは同じですが名前と書き方が違います。
::をふたつつけます。

疑似要素一覧
::after
::before
::first-letter
::first-line
::selection
::backdrop

あんまり無づかしく考えず個別に処理を覚えて使えるようにしときましょう。

スポンサードリンク




スポンサードリンク




-未分類
-

執筆者:


comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

jQuery hoverマウスと乗せたり外した時動作するイベント

jQuery hoverマウスと乗せたり外した時動作するイベント jQuery hoverマウスと乗せたり外した時動作するイベント hoverはマウスを乗せたり外したりしたときに起動するイベントです。 …

no image

jQuery parentsとparentの違い祖先を指定する

jQuery parentsとparenの違い祖先を指定する jQuery parentsとparenの違い祖先を指定する parentsとparentの違いはparent親は親要素全てに適応できます …

no image

jQuery nth-child偶数と奇数と二番目指定する方法

jQuery nth-child偶数と奇数nth-last-childとnth first child jQuery nth-child nth-childは何番目の要素を指定するセレクタです。 nt …

no image

jQuery animate要素をアニメーションさせる

jQuery animate要素をアニメーションさせる jQuery animate要素をアニメーションさせる animateの英語の意味は 生命を吹き込む,活気づける、活発にする、励ます、動画にする …

no image

jQuery mouseenterとmouseleaveマウスイベントの方法

jQuery mouseenterとmouseleaveマウスイベントの方法 jQuery mouseenterマウスを乗せた時のイベント方法 mouseenterはマウスを乗せた時に発生するイベント …