SOURCE

console 命令行工具 X clear
> Uncaught ReferenceError: $ is not defined
>
console
$(function(){
  $('.process').animate({width: 100}, 2000)
});
<div class="process-box">
  <div class="process">
  </div>
</div>
.process-box{
  width: 100px;
  border: 2px solid #f1f1f1;
  height: 5px;
  .process {
    background: red;
    height: 100%;
    width: 0px;
  }
}

本项目引用的自定义外部资源