2018-06-07 00:45:47 +08:00
|
|
|
|
$(function () {
|
|
|
|
|
var $iconList = $('div.fontawesome-icon-list').on('click', 'a', function () {
|
|
|
|
|
window.console.log($(this).children('i').attr('class'));
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
|
2018-08-03 21:47:32 +08:00
|
|
|
|
$iconList.find('ul li').addClass('col-xl-2 col-md-3 col-sm-4 col-6');
|
|
|
|
|
$iconList.find('div').addClass('col-xl-2 col-6');
|
2018-06-07 00:45:47 +08:00
|
|
|
|
|
|
|
|
|
$('#main-content').scrollspy({ offset: 150, target: '.fa-nav' });
|
2016-10-25 01:20:58 +08:00
|
|
|
|
});
|