2017-03-03 57 views
2

我試圖在Bootstrap中使用切換功能,但想用圖像替換默認按鈕。該圖片的文字爲「本週」。它旁邊的按鈕將是一個圖像,顯示「所有時間」。任何想法如何做到這一點?我可以在Bootstrap中使用圖像作爲按鈕嗎?

你可以看到網頁都在這了: http://matthewtbrown.com/test/imageasbutton/

<div class="btn-group" data-toggle="buttons"> 
<label class="btn btn-primary active thisweek"> 
<input type="radio" name="options" id="option1" autocomplete="off" checked> Radio 1  (preselected) 
</label> 
<label class="btn btn-primary"> 
<input type="radio" name="options" id="option2" autocomplete="off"> Radio 2 
</label> 

</div> 

rightcolumn .btn-group .btn .btn-primary .active .thisweek { 
background-image: url(../images/callout.png); 
background-color: transparent; 
} 

回答

1

你意味着你需要的圖片作爲一個單選按鈕是嗎?

希望,這有助於:

<style> 
/*input[type=radio] { 
    display: none; 
}*/ 
</style> 

<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="https://placehold.it/200x200"> 
</label> 
<label class="btn btn-primary"> 
<input type="radio" name="options" id="option2" autocomplete="off"><img src="https://placehold.it/150x150"> 
</label> 

取消註釋風格隱藏單選按鈕圖形:)

相關問題