-1

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 +"%");

});
4

1 に答える 1

3

ええと、$(this).find('.bar').width((100 - progBarValue) +"%");

于 2013-02-11T17:45:17.727 に答える