工作笔记

1.引入jquery的方式

  1)在cdn中

   <script src="http://code.jquery.com/jquery-1.12.1.min.js" integrity="sha256-I1nTg78tSrZev3kjvfdM5A5Ak/blglGzlaZANLPDl3I="  crossorigin="anonymous"></script>


2、display:list-item

3.$(selector).hover(handleIn,handleOut)

等价于:

$( selector ).mouseenter( handlerIn ).mouseleave( handlerOut );
4.fadeTo():Adjust the matched elements(调整匹配元素的透明度)
5注意只有数字值可以创建动画

你可能感兴趣的:(工作笔记)