0
ブートストラップで2つの異なる画像を切り替えるにはどうすればよいですか?私はそれらをラジオボタンとして機能させたいが、イメージを変更して1つが「アクティブ」であり、1つがそうでないことを示すことも欲しい。2つの異なる画像を切り替えるにはどうすればよいですか?
マイページ:http://matthewtbrown.com/test/imageasbutton/
コードスニペット
.btn .btn-primary .active .thisweek {
\t padding: 0px;
\t border-left-width: 0px;
\t border-right-width: 0px;
\t border-top-width: 0px;
\t border-bottom-width: 0px;
\t content:url(../images/thisweek.png);
}
.btn .btn-primary .thisweek {
\t padding: 0px;
\t border-left-width: 0px;
\t border-right-width: 0px;
\t border-top-width: 0px;
\t border-bottom-width: 0px;
\t content:url(../images/thisweek_inactive.png);
}
.btn .btn-primary .active .alltime {
\t padding: 0px;
\t border-left-width: 0px;
\t border-right-width: 0px;
\t border-top-width: 0px;
\t border-bottom-width: 0px;
\t content:url(../images/thisweek.png);
}
.btn .btn-primary .alltime {
\t padding: 0px;
\t border-left-width: 0px;
\t border-right-width: 0px; \t
\t border-top-width: 0px;
\t border-bottom-width: 0px;
\t content:url(../images/alltime_inactive.png);
}
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active thisweek">
<input type="radio" name="options" id="option1" autocomplete="off" checked> <img src="images/thisweek.png" width="108" height="27" style="float: left" alt=""/>
</label>
<label class="btn btn-primary alltime">
<input type="radio" name="options" id="option2" autocomplete="off"><img src="images/alltime_inactive.png" width="259" height="27" alt=""/>
</label>
</div>
がリンクを含む午前SO..Iですでに利用可能なコンテンツがたくさんありますhere-- [http://stackoverflow.com/questions/17541614/use-image-instead-of-radio-button ] [http://stackoverflow.com/questions/3896156/how-do-i-style-radio-buttons-with-images-laughing-smiley-for-good-sad-smiley/3896259] – neophyte
可能な複製[使用ラジオボタンの代わりに画像](http://stackoverflow.com/questions/17541614/use-image-instead-of-radio-button) – neophyte