div.days-dueで見つかった数値に基づいてブートストラッププログレスバーを設定する関数があります。それはうまく機能しますが、プログレスバーは私が望む反対の幅です。
progBarValue番号を逆にするにはどうすればよいですか?
function daysUntil(year, month, day) {
var now = new Date(),
dateEnd = new Date(year, month - 1, day), // months are zero-based
days = (dateEnd - now) / 1000/60/60/24; // convert milliseconds to days
return Math.round(days);
}
// find percentage to due date
$('#paging1 ul li').each(function () {
var monthDue = $(this).find('.month').text();
var dayDue = $(this).find('.day').text();
var yearDue = $(this).find('.year').text();
$(this).find('.days-due').text(daysUntil(yearDue, monthDue, dayDue));
// progress bar
// find number of days until due date
var progBarValue = $(this).find('.days-due').text();
// limit days due to no more than 100%
progBarValue = progBarValue > 100 ? 100 : progBarValue;
// set progress bar width
$(this).find('.bar').width(progBarValue +"%");
});