function addImage() {
  var spen_html = '<span class=\'bot\' ></span>\
                         <span class=\'top\'></span>';
  $('.blog_comment_body').append(spen_html);

  $('.blog_comment_body')
    .before('<div class=\'body_right\' style=\'float: left;\'><a target=\'_blank\'><img  /></a></div>');
  var feedbackCon = $('.feedbackCon').addClass('clearfix');
  for (var i = 0; i < feedbackCon.length; i++) {
    var span = $(feedbackCon[i]).find('span:last')[0].innerHTML || 'https://pic.cnitblog.com/face/sample_face.gif';
    $(feedbackCon[i]).find('.body_right img').attr('src', span);
    var href = $(feedbackCon[i]).parent().find('.comment_date').next().attr('href');
    $(feedbackCon[i]).find('.body_right a').attr('href', href);

  }
}
//移动一个单位 评论
function nextRecTop() {
  var rec = $('#RecentCommentsBlock');
  if (rec.length) {
    var top = rec.scrollTop();
    top++;
    rec.scrollTop(top);
    if (top != rec.scrollTop())
      rec.scrollTop(0);
  }
}
//移动评论
function MobileComment() {
  var RecCommentTime = 80;
  var RecintervalId = setInterval(function () {
    nextRecTop();
  }, RecCommentTime);

  $('#RecentCommentsBlock').hover(function () {//移进
    clearInterval(RecintervalId);
  }, function () {//移出
    RecintervalId = setInterval(function () {
      nextRecTop();
    }, RecCommentTime);
  });
}

//添加评论区 背景
function addtbCommentBody_bg() {
  var tbcomment = $('#tbCommentBody');
  if (!tbcomment.hasClass('tbCommentBody_bg')) {
    tbcomment.addClass('tbCommentBody_bg');
    tbcomment.focus(function () {
      removetbCommentBody_bg();
    });
  }
}

function focusoutCommentBody_bg() {
  $('#tbCommentBody').focusout(function () { addtbCommentBody_bg(); });
}
//移除评论区 背景
function removetbCommentBody_bg() {
  !$('.tbCommentBody_bg').removeClass('tbCommentBody_bg');
  $('#tbCommentBody').unbind('focus');
}
/*************************************************************************************
 * 评论区 END
 *************************************************************************************/

/*************************************************************************************
 * 根据文章中标题自动生成目录 BEGIN
 *************************************************************************************/
String.prototype.replaceAll = function (FindText, RepText) {
  regExp = new RegExp(FindText, 'gm');
  return this.replace(regExp, RepText);
}

/**
 * resolve the string to fit cnblog's rules
 */
function resolveTitle(title) {
  var result;
  result = title.replaceAll(' ', '-');
  result = result.replaceAll('\\(', '');
  result = result.replaceAll('\\)', '');
  result = result.replaceAll('（', '');
  result = result.replaceAll('）', '');
  result = result.toLowerCase();
  return result;
}
function GenerateContentList() {
  var nodes = $('#cnblogs_post_body :header');

  var content = '<a name="_labelTop"></a>';
  content += '<div id="navCategory">';
  content += '<blockquote><p style="font-size: 18pt; color:#a2b4ba"><b>目录</b></p>';
  content += '<div>';

  for (var i = 0; i < nodes.length; i++) {
    var item = '';
    var originTitle = $(nodes[i]).text();
    var resolvedTitle = resolveTitle(originTitle);

    if (nodes[i].tagName === 'H1') {
      item = '<a style="font-size:18px" href="#' + resolvedTitle + '">' + $(nodes[i]).text() + '</a><br>';
    } else if (nodes[i].tagName === 'H2') {
      item = '<a style="font-size:16px" href="#' + resolvedTitle + '">&emsp;&emsp;' + $(nodes[i]).text() + '</a><br>';
    }

    content += item;
  }
  content += '</blockquote></div>';
  var len = $('#cnblogs_post_body').length;
  if ($('#cnblogs_post_body').length != 0) {
    $($('#cnblogs_post_body')[0]).prepend(content);
  }

  $($('#cnblogs_post_body')[len - 1])
    .append('<div id=\'signature\'><p>作者：<a href=\'https://www.cnblogs.com/jingmoxukong/\'>静默虚空</a></br>欢迎任何形式的转载，但请务必注明出处。</br>限于本人水平，如果文章和代码有表述不当之处，还请不吝赐教。</p></div>');
}
/*************************************************************************************
 * 根据文章中标题自动生成目录 END
 *************************************************************************************/

function generateTagClouds() {
  $('.catListTag>ul').wrap('<div class=\'wrap\' ></div>').parent().css({ 'width': '240px', 'height': '240px' });

  var options = {
    'range': [-200, 300],
    'gravity': -10,
    'xPos': 0.5,
    'yPos': 0.5,
    'gravityVector': [0, 0, 1],
    'interval': 100,
    'hoverGravityFactor': 0
  };

  $('div.wrap').starfieldTagCloud(options);
}

// 自定义定时器[当元素加载完成是执行回调函数]
function customTimer(inpId, fn) {
  if ($(inpId).length) {
    fn();
  }
  else {
    var intervalId = setInterval(function () {
      if ($(inpId).length) {  //如果存在了
        clearInterval(intervalId);  // 则关闭定时器
        customTimer(inpId, fn);              //执行自身
      }
    }, 100);
  }
}

// execute the func after the page have loaded
$(function () {
  customTimer('#div_digg', function () {
    var div_html = '<div class=\'\'>\
                        <a href=\'javascript:void(0);\' onclick=\'c_follow();\'>关注</a>\
                         &nbsp;|&nbsp;\
                        <a href=\'#top\'>顶部</a>\
                         &nbsp;|&nbsp;\
                        <a href=\'javascript:void(0);\' onclick=" $(\'#tbCommentBody\').focus();">评论</a>\
                   </div>';
    $('#div_digg').append(div_html);
    //tbCommentBody
  });

  GenerateContentList();

  customTimer('.catListTag', generateTagClouds);

  //添加 评论区的 形象照
  MobileComment();//移动评论
  customTimer('.blog_comment_body', addImage);
  customTimer('#tbCommentBody', function () {
    addtbCommentBody_bg();
    focusoutCommentBody_bg();
  });
});