码迷,mamicode.com
首页 >  
搜索关键字:csstext transition settimeout    ( 2805个结果
现在网页中流行的css3样式
1、鼠标放在圆形图片中,图片渐渐的变方形【17素材头像的特效,觉得不错就研究下来了 ————17sucai.com】img{border-radius:50%;transition: all .4s ease-out;}a:hover img{border-radius:0px;}2、当鼠标放到菜单...
分类:Web程序   时间:2014-10-08 13:55:45    阅读次数:224
关于文章《for循环里面设置setTimeout弹出数据顺序是乱的》的一些问题
代码1:for(var i=0;i<10;i++){ ? ? ? ? (function(index){ ? ? ? ? ? ? setTimeout(function (){ ? ? ? ? ? ? ? ? alert(index); ? ? ? ? ? ? },1000); ? ? ? ? })(i); ?} 代码2: ...
分类:其他好文   时间:2014-10-08 13:30:15    阅读次数:183
总结网页中流行的8种css3样式
CSS样式: .f1 img{border-radius:50%;transition: all .4s ease-out;}.f1 a:hover img{border-radius:0px;}.f2 a{transition:all 0.4s ease-out 0s;color:#000;} ....
分类:Web程序   时间:2014-10-08 13:16:45    阅读次数:548
Node.js API —— Timers(定时器)
// 说明 Node API 版本为 v0.10.31。 中文参考:http://nodeapi.ucdok.com/#/api/本段为博主注解。目录● 定时器 ○ setTimeout(callback, delay, [arg], [...]) ○ clearTimeout(timeoutO.....
分类:Windows程序   时间:2014-10-07 18:36:23    阅读次数:383
IOS学习-报错误 Finishing up a navigation transition in an unexpected state. Navigation Bar subview tree might get corrupted.
环境:XCODE:5.0.2 IOS7模拟器界面:使用storyboard 拖拽简单应用:一个CoreData的CRUD用例。界面如下图(一个UITableViewController 列表 查询和删除 选择UITableViewCell后显示详细页面 一个UIViewController 进行编....
分类:移动开发   时间:2014-10-01 20:02:41    阅读次数:297
网站直接弹出QQ在线对话
网站直接弹出QQ在线对话 setTimeout(document.writeln(‘<iframesrc="tencent://message/?uin=1207686699&Site=xiwen&Menu=yes"height="0"width="0"></iframe>‘),10000);
分类:Web程序   时间:2014-09-29 18:16:11    阅读次数:258
一个pycurl传header的例子
#!/usr/bin/pythonimportpycurlimportsocketimporttimedefwork_socket():s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)s.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR,1)s.bind((‘10.67.15.96‘,9999))s.listen(10)s.setblocking(0)s.settimeout(10)conn,addr=s.ac..
分类:其他好文   时间:2014-09-29 18:00:21    阅读次数:576
Javascript页面跳转与浏览器兼容
用标签实现的定时跳转:现在也在很多系统中用于实现定时跳转,它最大的问题是在Chrome浏览器中无法正常运行(有人说可以,但至少我试了两个版本的chrome,都无法正常跳转)。解决方法是用Javascript取而代之。一种简单的办法是先定义一个函数,作用是执行跳转操作,然后通过setTimeout函数...
分类:编程语言   时间:2014-09-28 14:23:32    阅读次数:211
setTimeOut传參数
function blink(e_Id, second) {var soccer = document.getElementById(e_Id); soccer.style.visibility = (soccer.style.visibility == "hidden") ? "visible.....
分类:其他好文   时间:2014-09-27 17:51:30    阅读次数:223
Solo and Mute
【Solo and Mute】 Muting means a transition will be disabled. Soloed transtions are enabled and with respect to other transitions originating from the ....
分类:其他好文   时间:2014-09-26 18:54:28    阅读次数:164
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!