
passer-by.com
路人甲 · Passer-by路人甲个人网站,展示前端开发作品,致力于web开发组件化,Keep It Simple,Stupid
http://www.passer-by.com/
路人甲个人网站,展示前端开发作品,致力于web开发组件化,Keep It Simple,Stupid
http://www.passer-by.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Thursday
LOAD TIME
1.6 seconds
16x16
32x32
64x64
zhenghaole
zhenghaole
zhejiang●●●●●●●●gzhoushi
hang●●●●ushi , zhejiangsheng, 310016
China
View this contact
zhenghaole
zhenghaole
zhejiang●●●●●●●●gzhoushi
hang●●●●ushi , zhejiangsheng, 310016
China
View this contact
zhenghaole
zhenghaole
zhejiang●●●●●●●●gzhoushi
hang●●●●ushi , zhejiangsheng, 310016
China
View this contact
13
YEARS
9
MONTHS
23
DAYS
XIN NET TECHNOLOGY CORPORATION
WHOIS : whois.paycenter.com.cn
REFERRED : http://www.xinnet.com
PAGES IN
THIS WEBSITE
0
SSL
EXTERNAL LINKS
22
SITE IP
151.101.41.147
LOAD TIME
1.578 sec
SCORE
6.2
路人甲 · Passer-by | passer-by.com Reviews
https://passer-by.com
路人甲个人网站,展示前端开发作品,致力于web开发组件化,Keep It Simple,Stupid
通信 | 高嘉君的个人博客
http://gaojiajun.cn/category/communication
1 原理 由于单臂路由的局限性 带宽,转发效率 ,使得应用较少。 2 拓扑 3. 步骤1 [crayon-58cd85354d043067733737/] 4. 步骤2 配置路由器子接口和IP地址 [cray…. 2拓扑如下 3.hybrid理解 4.需求1 vlan10自由访问,vlan20自由访…. 1 什么是trunk 为了使vlan的数据跨越多台交换机传递,交换机之间的链路需要配置为干道链路(trunk link),用来承载多个vlan数据。 拓扑如下 创建vlan [crayon-58cd85354e305119916440/] 配置Access接口 …. 设置双工模式 [crayon-58cd85354e8fe212117179/] 配置接口速率 [crayon-58cd85354e909918227062/] proxy arp 当主机上没有配置默认网关地址,可以发送一个arp请求使具备p…. 通信 编码、寻址、优化 帧中继 连接两个局域网,例如企业分支机构之间的互连,或者企业连接到运营商的骨干IP网络上。 同步传递方式 STM 异步传递方式 ATM STM….
技术分享 | 高嘉君的个人博客
http://gaojiajun.cn/category/tech-share
函数节流 & 函数去抖. 原文链接 http:/ www.w3cplus.com/css3/text-stroke.html. 原文链接 https:/ github.com/FrontEndRoad/HTML5-FAQ Meta基础知识 H5页面窗口自动调整到设备宽度,并禁止用户缩放页面 [crayon-58cd853596689283857120/] H5空白页…. 站点根目录部署 执行npm run build 找到dist目录,把里面的文件直接丢到站点根目录下即可 站点子目录部署 1.修改config/index.js [crayon-58cd853597ce5735915398/] 2.如果使用了…. 1文字空心效果 See the Pen mOQMKZ by abcdGJJ (@abcdGJJ) on CodePen. 2. 鼠标悬浮动画效果 See the Pen xgJBQK by abcdGJJ (@abcdGJJ) on Co…. Jquery事件绑定函数bind.lived.elegate.on区别.
JavaScript中创建对象的7中模式 | 高嘉君的个人博客
http://gaojiajun.cn/2016/10/javascript-newobject
原文地址 http:/ blog.csdn.net/u014346301/article/details/52204967. Var person = new Object(); person.name = "liubei"; person.age = 29; person.job = "shayemuyou"; person.sayName = function(){ alert(this.name); }. Var person = { name: "liubei", age: 29, job: "shayemeiyou", sayName: function() { alert(this.name); } }. Console.log(person1.constructor = Person); / true console.log(person2.constructor = Person); / true. Alert(person1.sayName = person2.sayName); / false. Function Person() Person.prototype.n...Funct...
php-curl模拟登录正方抓取考试成绩(最新版)小白教程 | 高嘉君的个人博客
http://gaojiajun.cn/2016/01/php-curl-zhengfang
我们要用到的数据只有default2.aspx和xs main.aspx? 其中__VIEWSTATE是asp.net服务器的状态信息,需要抓取出来。 另外default2.aspx这个页面采用了302跳转,即登录成功后会跳转到xs main.aspx? Php session start(); $id=session id(); $ SESSION['id']=$id;? Http:/ 210.44.176.46/CheckCode.aspx". Content-type: text/html; charset=gbk". Http:/ 210.44.176.46/'. Http:/ 210.44.176.46/default2.aspx". Input type="hidden" name=" VIEWSTATE" value=" " / /'. Preg match all('/ span id="xhxm" /', $con, $xm); / 正则出的数据存到$xm数组中 $xm[1][0]=substr($xm[1][0],0,-4); / 字符串截取,获得姓名.
jquery事件绑定函数bind.lived.elegate.on区别 | 高嘉君的个人博客
http://gaojiajun.cn/2016/11/jquery-bind-vs-lived-vs-elegate-vs-on
Jquery事件绑定函数bind.lived.elegate.on区别. JQuery 1.7 之后弃用*. 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议.
高嘉君的个人博客 - Part 3
http://gaojiajun.cn/page/3
两栏布局 1. float margin 一侧定宽,一侧自动 在线预览 See the Pen JKwjwL by abcdGJJ (@abcdGJJ) on CodePen. 原理 左div定宽浮动,右div正常文档流并以左div左上…. 先上预览图,后说原理 See the Pen kXAZOk by abcdGJJ (@abcdGJJ) on CodePen. 原理 构造两个三角形,定位属性为绝对定位。 注 此方法适用于未commit的情况 git reset git checkout filename. 什么是BFC Block for…. Stylus是啥 Stylus 是一个高效、动态以及丰富的 CSS 预处理器。 Stylus文件后缀是 .st…. 配置镜像 1. 通过config指定 npm config set registry http:/ registry.cnpmjs.org 淘宝的npm源 npm info underscore 查看模块underscore的信息 …. 1 原理 由于单臂路由的局限性 带宽,转发效率 ,使得应用较少。
高嘉君的个人博客 - Part 2
http://gaojiajun.cn/page/2
作者 旗smile 原文地址 http:/ blog.csdn.net/u014346301/article/details/52204967 ECMA-262把对象定义为 无序属性的集合,其属性可以包含基本值、对象或者函数。 以后会增加一个用CSS3实现的 See the Pen wzPqvy by abcdGJJ (@abcdGJJ) on CodePen. CSS3版本 See the Pen bwJOjg b…. 文档坐标和视口坐标 文档坐标是指网页从 html 开始至 /html 结束之间的宽高,窗口坐标是指浏览器除去菜单栏、书签栏、滚动条之后剩下的视野宽高。 什么是正则表达式 简单来说和windows自带的搜索功能有点像,主要用于搜索字符串中某些特定的字符 测试工具 推荐两个测试正则表达式的方法,一个是去开源中国在线测试,另一个是安装一个谷歌浏览器应用RegExp Tester来调试 入门 假…. 8211;from 高程3 举个例子 [crayon-58cd85349b403234151143/] 按照常理,…. Vh是相对于视窗区域高度百分比的单位,1vh = 1….
yarn常用命令 | 高嘉君的个人博客
http://gaojiajun.cn/2016/11/yarn-command
Yarn / yarn install = = npm install. Yarn add xxx = = npm install xxx save. Yarn add xxx dev = = npm install xxx save-dev. Yarn remove xxx = = npm uninstall xxx. Yarn upgrade = = npm update. Yarn global add xxx = = npm install xxx -g. 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议.
TOTAL LINKS TO THIS WEBSITE
22
Blog de passer-au-dela - Passer au delà - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Plus d'actions ▼. S'abonner à mon blog. Création : 09/06/2012 à 18:58. Mise à jour : 22/09/2012 à 12:21. Ce blog n'a pas encore d'articles. Abonne-toi à mon blog! Poster sur mon blog.
En construction
Site hébergé par OVH.COM. Installer un module clef en main. Mettre votre site en ligne. Gestion des bases MySQL. Taches automatisées (CRON). Discutez avec nos autres utilisateurs sur notre forum. Toujours pas de solution? Ou téléphonez-nous. Les outils à votre disposition :. Votre manager (espace client). De votre hébergement. Installés sur votre hébergement. Suivez l'état de vos services :. Votre serveur d'hébergement : cluster003. Etat de votre hébergement. Netcraft : uptime graph. XA0;- toolbar.
passer-au-tout-legume.bonplantdombul.com
Votre Guide Pour Devenir Végétarien
Qui Veut Découvrir Comment Devenir Végétarien Rapidement et Facilement Et Apprécier Tous les Bienfaits qui l'Accompagne? Laissez-moi vous poser quelques questions rapides:. Votre poids est-il sain? Vous sentez-vous bien la plupart du temps? Vous réveillez-vous reposé (contrairement à fatigué et léthargique)? Diriez-vous que votre santé générale est bonne? Votre pression artérielle est-elle saine? Vos niveaux de cholestérol et de glycémie sont-ils normaux? Manger végétarien n'est pas seulement sain, c'est...
passer-by-- (reserved) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 12 Years. Last Visit: 356 weeks ago. This deviant's activity is hidden. Deviant since Nov 7, 2004. We've split the page into zones!
passerby
No hay ninguna entrada. No hay ninguna entrada. Suscribirse a: Entradas (Atom). Ver todo mi perfil. Plantilla Picture Window. Con la tecnología de Blogger.
路人甲 · Passer-by
Cc Rock 柴超·LoFoTo:. Cc Rock 柴超·LoFoTo:. 三亚, Sanya City 位于海南岛的最南端,是中国最南部的热带滨海旅游城市,全国空气质量最好的城市,全国最长寿地区 平均寿命80岁。 市别称鹿城,又被称为 东方夏威夷 ,位居中国四大一线旅游城市 三威杭厦 之首,它拥有全海南岛最美丽的海滨风光。 All the bright precious things fade so fast. His time in paris ended ignominiously: bechet was jailed, then deported, when a passer-by was wounded during aduel that bechet was a party to. A snow ball caught the passer-by on the shoulder. Les Amoureux. 9张.
passer-by123 (Robert S. Wolverton) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Robert S. Wolverton. Robert S. Wolverton. Deviant for 7 Years. This deviant's full pageview. Robert S. Wolverton. Robert S. Wolverton. This is the place where you can personalize your profile! Why," you ask?
passer-by198-depressing.blogspot.com
Dégustation?: Depressing
From : Asahikawa Hokkaido. 12304;Depressing】 News and Blogs around the world. 12288;created : passer-by198. 65507;ー ̄) 邪笑. きっと…忘れない…忘れたくない…. Gives a great site! Channel KOTEN / Takafumi Matsui. 当サイトには YouTube のコンテンツも多数ありますが…. YouTube のコンテンツに最適な Web Browser は…. 8230;当然ながら…同じ Google のサービスである…. Internet Explorer 8 や…. 12300;100」を獲得している…とても優秀な Web Browser です…. Firefox は「94」…. Internet Explorer 8 は「20」です…. Internet Explorer は2010年12月現在…. Beta 版で 9 がリリースされていますが…. テスト結果は「95」です…. Source : 2012.11.28 産経ニュー...自衛隊&#...
passer-by198-infinity.blogspot.com
Dégustation?: Infinity
From : Asahikawa Hokkaido. Blog / Pottering / Browser / Laboratory / Blogger / Customize / Design / YouTube / Video .and more. 12288;created : passer-by198. 65507;ー ̄) 邪笑. きっと…忘れない…忘れたくない…. Blogger テンプレート カスタマイズ / Universal. Blogger テンプレート カスタマイズ / Header. Blogger テンプレート カスタマイズ / Sidebar. Blogger テンプレート カスタマイズ / Main. Blogger テンプレート カスタマイズ / Footer. Blogger テンプレート カスタマイズ / Optimization. 12300;jQuery」と「jQuery UI」で HTML に彩りを添えよう. Gives a great site! Channel KOTEN / Takafumi Matsui. 過去記事で書いた… Blo...かんのファーム ...