摘要:
下面是完整的例子,暂不做分析 FullScreen API 演示 进入全屏 退出全屏 查看全屏的DOM元素 阅读全文
摘要:
$ git config --global user.name "yourname"$ git config --global user.email "youremail"配置ssh $ ssh-keygen -t rsa -C "youremail"$ eval `ssh-agent -s` 执行... 阅读全文
摘要:
阅读全文
摘要:
git branch myfeture 创建分支git checkout myfeturegit add --allgit commit -mgit push origin myfeturegit checkout mastergit merge myfeturegit push 阅读全文
摘要:
导航html如下 导航css如下js代码如下$(function(){ $(window).scroll(function() { var scrollHight=$(window).scrollTop(); v... 阅读全文
摘要:
复制案例 兑换码:32132132132131 复制 js中需要放一个ZeroClipboard.swf去加载,否则不能生效,需要的文件自己在网上可以很容易找到。 阅读全文
摘要:
使用css3和伪元素制作的一个立体导航条供大家参考,代码如下: CSS制作立体导航 Home About Me Portfolio Blog Resources Contact ... 阅读全文
摘要:
大家都知道使用opacity调节透明度不仅是背景透明了而且选择区域的文字也跟着透明了, 这是我们不想要的效果,于是强大的css3便有了只让背景透明的功能 那就是background:rgba(0,0,0,0.5);里面参数不用做过多的解释了吧! 前面三个是对背景颜色的控制,全身0表示背景颜... 阅读全文