5441
редагування
Admin (обговорення | внесок) Немає опису редагування |
Admin (обговорення | внесок) Немає опису редагування |
||
| Рядок 76: | Рядок 76: | ||
// Profile icons - grayscale if no URL, clickable if has URL | // Profile icons - grayscale if no URL, clickable if has URL | ||
document. | $(document).ready(function() { | ||
$('.profile-icon').each(function() { | |||
var icon = $(this); | |||
var url = icon.attr('data-url'); | |||
if (url && url.trim() !== '') { | |||
icon.css('cursor', 'pointer'); | |||
icon.on('click', function() { | |||
window.open(url, '_blank'); | |||
}); | |||
icon.on('mouseenter', function() { | |||
icon.css('background', '#444'); | |||
}); | |||
icon.on('mouseleave', function() { | |||
icon.css('background', '#333'); | |||
}); | |||
} else { | |||
icon.css({ | |||
} | 'opacity': '0.3', | ||
'filter': 'grayscale(100%)', | |||
'-webkit-filter': 'grayscale(100%)', | |||
'cursor': 'default' | |||
}); | |||
} | |||
}); | |||
}); | }); | ||