foreach my log (@blog)

IT 小ネタ

html の input type="range" を css でカッコつけてみた





input type=

html の input 要素。

右に左にぐいーんってできます。







これを css でちょっとカッコつけみました。。
input[type="range"] {
-webkit-appearance:none;
width: 100%; background: #eee;
box-shadow: 0 0 10px #666;
border-radius: 50px;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
background: #333;
width: 50px;
height: 50px;
border-radius: 50%;
}
input[type="range"]::-webkit-slider-thumb:hover {
background: #999;
}
input[type="range"]::-webkit-slider-thumb:active {
background: #fefefe;
}







同じカテゴリー(IT 小ネタ)の記事
上の画像に書かれている文字を入力して下さい
 
<ご注意>
書き込まれた内容は公開され、ブログの持ち主だけが削除できます。
TI-DA
てぃーだブログ
プロフィール
chinji
chinji

PAGE TOP ▲