会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
遥望那月
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
···
13
下一页
2019年12月2日
git使用以及对应sourceTree
摘要: 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 遥望那月
阅读(887)
评论(0)
推荐(0)
2019年11月29日
11.jQuery之自定义动画
摘要: 注意: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 遥望那月
阅读(164)
评论(0)
推荐(0)
11.jQuery之淡入淡出效果
摘要: 知识点: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 遥望那月
阅读(199)
评论(0)
推荐(0)
10.jQuery之停止动画排队stop方法(重点)
摘要: 重点: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 遥望那月
阅读(283)
评论(0)
推荐(0)
9.jQuery之简洁版滑动下拉菜单
摘要: 知识点: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 遥望那月
阅读(482)
评论(0)
推荐(0)
8.jQuery之上下滑动效果
摘要: 上下滑动: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 遥望那月
阅读(519)
评论(0)
推荐(0)
7.jQuery之显示与隐藏效果
摘要: 这里用到三个函数方法:show() hide() toggle() 注意点是三个方法里面的两个参数的使用,前一个参数是时间,表示显示速度;后一个参数是回调函数,只有前面的动画执行完之后,回调函数才会执行 1 <style> 2 div { 3 width: 150px; 4 height: 300p
阅读全文
posted @ 2019-11-29 11:10 遥望那月
阅读(267)
评论(0)
推荐(0)
6.jQuery之类操作不影响原先类,but原生js却是会影响
摘要: 注意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 遥望那月
阅读(178)
评论(0)
推荐(0)
5.jQuery之栏切换
摘要: 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 遥望那月
阅读(138)
评论(0)
推荐(0)
jQuery之样式的类操作
摘要: 方法:添加类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 遥望那月
阅读(245)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
···
13
下一页
公告