
test.xdnote.com
X.D的实验室X.D的实验室
http://test.xdnote.com/
X.D的实验室
http://test.xdnote.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
1.2 seconds
PAGES IN
THIS WEBSITE
20
SSL
EXTERNAL LINKS
22
SITE IP
23.235.46.133
LOAD TIME
1.186 sec
SCORE
6.2
X.D的实验室 | test.xdnote.com Reviews
https://test.xdnote.com
X.D的实验室
CSS3 - 背景激变绘图
http://test.xdnote.com/chapter-css3/css3-background.html
HTML5之离线缓存
http://test.xdnote.com/chapter-html5/offlinecache.html
步骤一 加入缓存appcache文件 manifest,并创建这个文件 html manifest="offlinecache.appcache" 步骤二 编辑这个文件 第一行写为"CACHE MANIFEST" CACHE MANIFEST 步骤三 加入想要缓存资源列表 每行一个 ./stylesheets/stylesheet.css ./javascripts/jquery.min.js ./javascripts/script.js 其它语法说明 # "#" 为 注释 # "*" 为 任意链接 # 除了 "CACHE MANIFEST" 外,还有"NETWORK:"为不使用缓存的 "FALLBACK:"为使用缓存失败的场景 # 与"CACHE MANIFEST"一样,独占一行,后面根对应的资源,一个资源一行.
CANVAS给网页添加万花筒特效
http://test.xdnote.com/chapter-html5/html5-canvas1.html
0-data.step): data.step; }else if(data.current data.start){ data.step = data.step 0? 0-data.step): data.step; } draw.beginPath(); draw.fillStyle = 'rgba(' data.rgb data.current ')'; draw.fillRect(data.offset[0],data.offset[1],data.offset[2],data.offset[3]); draw.stroke(); } draw.closePath(); draw.fill(); } /* * 动画特效 */ function animation(){ drawCanvas(); stopevent=window.requestAnimationFrame(animation); } function stopanimation(){ window.ca...
Moderniz框架简单使用
http://test.xdnote.com/chapter-html5/modernizr.html
Modernizr是一个HTML5特性探测框架 官网http:/ modernizr.com/ ,测试当前打开页面的浏览器是否支持HTML5/CSS3的相关特性,下载地址是http:/ modernizr.com/download/。 下载完后在页面上加入代码 script type="text/javascript" src="moderniz.js" /. Function debug(obj,level){ var str=' ; for(i in obj){ if(typeof(obj[i])= 'object'){ space = level 1; str =i; str =' br / '; str =debug(obj[i],space) }else if(typeof(obj[i])!
移动设备上的图片墙
http://test.xdnote.com/chapter-javascript/imgwallenter.html
Script src="hammer.min.js" type="text/javascript" /script script src="ImgWall.js" type="text/javascript" /script. Var imgWall = new ImgWall(config);. Id : 容器ID * data : 图片数据 必须传数组至少包括图片地址 * scale : 是否可放大缩小,默认true * rotate : 是否可旋转,默认false,只有开启scale的情况下才能开启rotate * evt Open : 打开时的方法,也可以通过onOpen(fn)设置 * evt Close : 关闭时的方法,也可以通过onBack(fn)设置 * evt Switch : 切换时的方法,也可以通过onSwitch(fn)设置 * auto open : 是否自动打开,默认为true 比如最简单的,只传一张图片 var imgWall = new ImgWall({data:[{imgUrl:'xxx.jpg'}]});.
TOTAL PAGES IN THIS WEBSITE
20
标签 : JavaScript | X.d 笔记
http://www.xdnote.com/tags/js
Original article by X.d , freedom to reprint, freedom to modify. A web dev. X.d Thank you. Powered by xdnote.com 2016 X.D.
分类 : 技术集 | X.d 笔记
http://www.xdnote.com/categories/technique
数据分析学习笔记四 概率论 - 概率分布. 数据分析学习笔记三 概率论 - 基础概率. 数据分析学习笔记一 使用numpy pandas matplotlib画图. Original article by X.d , freedom to reprint, freedom to modify. A web dev. X.d Thank you. Powered by xdnote.com 2016 X.D.
ES6的一些新鲜类型介绍 | X.d 笔记
http://www.xdnote.com/es6-newtype
Int8Array / Uint8Array / Unit8ClampedArray / DataView(Int8 / Unit8). Int16Array / Uint16Array / DataView(Int16 / Unit16). Float32Array / Float64Array / DataView(Float32 / Float64). WeakMap,从名字来看就是弱引用的Map,个人理解是如果值没有的了情况下,就会回收掉 比如$(element).remove()? Key1, value1 ], [ key2, value2 ] ] );. 注意参数是一个array [] 里面有 [key,value] 这样的数组. WeakMap的key必须为对象或者null,所以不能为字符 map.set( 'key', 'value' )会报错. Set( key, value ) / 说明set会返回this,就像append一样可以用链式不停set. ForEach( function(value , key , map){} ) / 说明 三个参数顺序分别为值、键、map本身.
标签 : html5 | X.d 笔记
http://www.xdnote.com/tags/html5
Original article by X.d , freedom to reprint, freedom to modify. A web dev. X.d Thank you. Powered by xdnote.com 2016 X.D.
HTTP2即将完工,特性预览 | X.d 笔记
http://www.xdnote.com/http2-feature
刚看了IETF 的 HTTPbis 团队的HTTP2说明,已经接近尾声即将发布于是简单的看了下。 HTTP2使用多路复用,解决HTTP1.X中 线头阻塞(Head-of-line blocking) 的问题. 个人理解,是不是,具体怎么实现就不知道了,反正不是响应头,不知道需不需要WEB应用配合 类型于 304,但比304更牛,比如Last-Modified与If-Modified-Since 通常可以判定一个请求是否可以启用缓存,但 Server push可以启动整个页面的HTML/JS/CSS/IMG等等,让页面瞬间打开。 HTTP2启动头压缩,应该可以略微增加一些效率,比如 HTTP1.X每个请求或响应怎么说也得有四五个头吧,在TCP中也需要循环四五次处理,HTTP2压缩成一个 HTTP2-Settings 服务器实现识别 ,就不用循环了。 Apache Log4j 2.0 新特性以及升级. Original article by X.d , freedom to reprint, freedom to modify. A web dev. X.d Thank you.
标签 : css | X.d 笔记
http://www.xdnote.com/tags/css
Original article by X.d , freedom to reprint, freedom to modify. A web dev. X.d Thank you. Powered by xdnote.com 2016 X.D.
分类 : 杂想集 | X.d 笔记
http://www.xdnote.com/categories/murmur
Original article by X.d , freedom to reprint, freedom to modify. A web dev. X.d Thank you. Powered by xdnote.com 2016 X.D.
分类 : 问题集 | X.d 笔记
http://www.xdnote.com/categories/trouble
Original article by X.d , freedom to reprint, freedom to modify. A web dev. X.d Thank you. Powered by xdnote.com 2016 X.D.
Wordpress to hexo 搬家记录 | X.d 笔记
http://www.xdnote.com/wordpress-to-hexo
Wordpress to hexo 搬家记录. Npm install hexo-migrator-wordpress - save. Hexo migrate wordpress wordpress.xml. Hexo里面只能有一个Catagroy,如果有定义了两个,会认为第二个是第一个的子分类,比如在WordPress里面给一篇文章定义了两个分类 分类一 , 分类二 ,导在hexo里面可能有两种情况. ServerName mirror.xdnote.com. Markdown extra 支持插件 这个是默认安装的. 也是一个markdown支持插件,和marked冲突,只支持hexo3.0以上,与marked二者选一,建议选择这个,和GITHUB相似. 需要注意的是有不少主题是hexo2.5时代的,目前Hexo的版本是3.0,兼容性方面可能有问题,但如果你看中了一款主题,又不兼容3.0版本的话,建议自己去修改主题代码。 使用 Git 与 DaoCloud 搭建 Hexo. A web dev. X.d Thank you.
冰桶接力随便看看 | X.d 笔记
http://www.xdnote.com/Ice-bucket-relay
有没有不爽的 应该不会有吧,慈善机构凑到了钱、明星们增加了活跃度、企业家们的公司名字被人记住了、媒体们也都开着各样的专栏报道 更火了新型自媒体 、还有黑商们也可能在暗中各种博眼球广告什么的,这样一个皆大欢喜的事,就是有些满口仁义道德的正人君子不爽了。 这种现象最近得到好转了,很少出现在我的邮箱或QQ里面,但回头一想,是不是 智商 真提高了 还是朋友们太久没见,都不懈于给我发这种消息了呢、还是我太多次的对他们这些邮件不懈一顾,玩不下去了呢 冰桶接力就有点点影子,最终肯定会烟消云散。 Original article by X.d , freedom to reprint, freedom to modify. A web dev. X.d Thank you. Powered by xdnote.com 2016 X.D.
TOTAL LINKS TO THIS WEBSITE
22
xcartgoldplus.com
Xcartgoldplus.com Is For Sale At $299. Click Here To Buy Now. Inquire about this domain.
Xcesssoft » Innovative solutions that audiences love
We are a team of expert developers. With a focus on modern web and mobile app development technologies. We help entrepreneurs, startups and companies build, launch and grow their apps. POWERFUL WEBSITES THAT LOOK BEAUTIFUL. From concept to launch ready products, we leverage mature technologies and lean methodologies to mitigate our clients’ risks and accelerate time to market. Every day, managers in your organization take steps to implement new ideas without having any real evidence to back them up.
Madzzoni's Podcast | Audio, Video og Podcast.
Audio, Video og Podcast. Hent Sjove og skæve podcast til din iPod eller en anden mp3-afspiller, { enter here! Abonnér på frie podcast, det er. Underholdning til din ynglings Gadget som iPod, iPhone, iPad og mange andre…. 2015 Madzzoni's Podcast.
论坛 - club.xdnice.com
Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . Hwguanli . GMT 8, 2015-8-14 20:52 , Processed in 0.339083 second(s), 17 queries .
X.D的实验室
Idea Web. Html5. CSS3. JavaScript. Pulgin. 主要放一些本人研究过程中的小想法 主要是HTML页面可以看的见的 的实际效果,想看其它玩意的还请移步 我的主博客. This page generated using GitHub Pages. Theme by Jon Rohan.
MySQL Fatal Error
The Error returned was:. Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2).
Bevington Group: XeP3 Login
Sign in to XeP3 Lean Accelerator. Keep me signed in. US, Australia and NZ patents apply to XeP3, Canadian patents pending. Do you accept the Terms and Conditions. As listed on Bevington Group website? XeP3 Database Online Help.
Xetma Vollenweider - The Better Partner
TEST PDF datasheet download,TEST inventory info
TEST Inventory Info :. Information source XinFei Electronic Components.
SOCIAL ENGAGEMENT