上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: git上面的几条指令 (1)要想把A合并到B分支上,就需要先切换到B分支上,然后在合并A分支,执行指令: git checkout B // 这是切换到B分支上 git merge A // 这是将A分支合并到B分支上(因为现在本身就在B分支上,只需要执行合并 即可) (2)查看分支: git br 阅读全文
posted @ 2019-12-02 15:48 遥望那月 阅读(832) 评论(0) 推荐(0) 编辑
摘要: 注意:animate里面是一个对象,他有几个参数,详情可以参考官网 1 <style> 2 div { 3 position: absolute; 4 width: 200px; 5 height: 200px; 6 background-color: pink; 7 } 8 </style> 9 阅读全文
posted @ 2019-11-29 13:56 遥望那月 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 知识点:fadeIn fadeOut fadeToggle fadeTo 1 <style> 2 div { 3 width: 150px; 4 height: 300px; 5 background-color: pink; 6 display: none; 7 } 8 </style> 9 <b 阅读全文
posted @ 2019-11-29 11:47 遥望那月 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 重点:stop,在实际项目中,这个细节很重要 1 <style> 2 * { 3 margin: 0; 4 padding: 0; 5 } 6 7 li { 8 list-style-type: none; 9 } 10 11 a { 12 text-decoration: none; 13 fon 阅读全文
posted @ 2019-11-29 11:39 遥望那月 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 知识点:hover的使用,已经slideToggle的切换效果 1 <style> 2 * { 3 margin: 0; 4 padding: 0; 5 } 6 7 li { 8 list-style-type: none; 9 } 10 11 a { 12 text-decoration: non 阅读全文
posted @ 2019-11-29 11:34 遥望那月 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 上下滑动:slideDown slideUp slideToggle 1 <style> 2 div { 3 width: 150px; 4 height: 300px; 5 background-color: pink; 6 display: none; 7 } 8 </style> 9 <but 阅读全文
posted @ 2019-11-29 11:19 遥望那月 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 这里用到三个函数方法:show() hide() toggle() 注意点是三个方法里面的两个参数的使用,前一个参数是时间,表示显示速度;后一个参数是回调函数,只有前面的动画执行完之后,回调函数才会执行 1 <style> 2 div { 3 width: 150px; 4 height: 300p 阅读全文
posted @ 2019-11-29 11:10 遥望那月 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 注意jQuery和js的区别: <style> .one { width: 200px; height: 200px; background-color: pink; transition: all .3s; } .two { transform: rotate(720deg); } </style 阅读全文
posted @ 2019-11-29 10:58 遥望那月 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1 <style> 2 * { 3 margin: 0; 4 padding: 0; 5 } 6 7 li { 8 list-style-type: none; 9 } 10 11 .tab { 12 width: 978px; 13 margin: 100px auto; 14 } 15 16 . 阅读全文
posted @ 2019-11-29 10:57 遥望那月 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 方法:添加类addClass 、删除类removeClass、 切换类toggleClass 1 <style> 2 div { 3 width: 150px; 4 height: 150px; 5 background-color: pink; 6 margin: 100px auto; 7 tr 阅读全文
posted @ 2019-11-29 10:43 遥望那月 阅读(235) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页