Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/09/2014 in Posts

  1. hover ряда выполняется через css ховер колонки выполняется через js Алгоритм очень простой (для простых таблиц). var rows = table.find('tr');var cells = table.find('td');rows.each(function() { var curRow = jQuery(this); var curCells = curRow.children(); curCells.each(function(i) { var curCell = jQuery(this); curCell.hover(function() { highlightCells(i); }, function() { cells.removeClass('hover'); }); });});function highlightCells(i) { rows.each(function() { jQuery(this).children().removeClass('hover').eq(i).addClass('hover'); });}
    1 point
  2. Нет, вариант, предложенный в codeCademy выполнит тело цикла три раза и завершит цикл (так работают циклы), после чего завершится и функция.
    1 point
  3. Уберите у псевдоэлементов «display: table» и «display: table-cell»
    1 point
This leaderboard is set to Kiev/GMT+02:00
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy