我使用switchy http://lou.github.io/switchy/應用的樣式,它使用動畫,color.js一切都混得切換
我有一個以上的,不像他們的頁面,每次一個得到的toogle所有的人都變成綠色,怎麼能我避免這種情況使人們得到的toogle只有
$(function() {
$('.binary').switchy();
$('.binary').on('change', function(){
// Animate Switchy Bar background color 7cb15b
var bgColor = '#ebebeb';
if ($(this).val() == '1'){
bgColor = '#7cb15b';
} else if ($(this).val() == '0;'){
bgColor = '#ebebeb';
}
$('.switchy-bar').animate({
backgroundColor: bgColor
});
// Display action in console
var log = 'Selected value is "'+$(this).val()+'"';
$('#console').html(log).hide().fadeIn();
});
});
你可以明白我的意思在這裏www.niors.com