greenfavo.com greenfavo.com

GREENFAVO.COM

greenfavo - 前端学习笔记

分享web前端技术,享受开发过程

http://www.greenfavo.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR GREENFAVO.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

February

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Monday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.9 out of 5 with 12 reviews
5 star
3
4 star
5
3 star
4
2 star
0
1 star
0

Hey there! Start your review of greenfavo.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

2.2 seconds

CONTACTS AT GREENFAVO.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
greenfavo - 前端学习笔记 | greenfavo.com Reviews
<META>
DESCRIPTION
分享web前端技术,享受开发过程
<META>
KEYWORDS
1 web前端博客
2 前端技术
3 前端开发
4 前端学习笔记
5 javascript
6 css
7
8 coupons
9 reviews
10 scam
CONTENT
Page content here
KEYWORDS ON
PAGE
greenfavo,关于&留言,koa初体验,网上看了有promise的解决方法,也不直观,在github上没有找,暂无评论,nodejs,阅读全文,准备http/2 web设计者和开发者的指南 翻译,性能优化,css3 flexbox弹性布局,它可以让你摆脱浮动定位轻松实现各种复杂布局,例如垂直居中,等高多列,流式布局,而且浏览器的支持情况也很好,现代浏览器及ie10以上都已经支持了,flex布局的好处 1,如果元,跳出js异步回调多层嵌套,比如下面这种在一个页面输出当前文章内容,js实现常见排序算法
SERVER
Apache
POWERED BY
PHP/5.3.29
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

greenfavo - 前端学习笔记 | greenfavo.com Reviews

https://greenfavo.com

分享web前端技术,享受开发过程

INTERNAL PAGES

greenfavo.com greenfavo.com
1

koa初体验 - greenfavo

http://greenfavo.com/2016/07/21/koa

Github地址: https:/ github.com/greenfavo/koa-blog. Express写法 models.User.findById(id,function(err,doc){ if(err){ console.error(err); return; } res.render('index.html',{ doc:doc, }); });. Koa写法 var app=require('koa')(); app.use(function*(next){ var user=yield models.User.findById(id); console.log(user);/ 可以获取到值 });. Appuse(function *(){ if(this.path= ='/'){ / 我是首页 } }); app.use(function *(){ if(this.path= ='/detail'){ / 我是详情页 } });. 用于解析post提交表单的结果,存储在this.request.body对象里. Var username=this.request....

2

js this详解 - greenfavo

http://greenfavo.com/2015/12/14/js-this

Var x=1; function f1(){ console.log(this.x);/ 1 console.log(this= f1);/ false console.log(this= window);/ true } f1();. Var x=1; var obj={ x:2, f2:function(){ console.log(this.x); console.log(this= obj); console.log(this= window); } } obj.f2();/ 2 true false. 接上例 var func=obj.f2; func();/ 1 false true. 1 不传参时默认调用全局对象 this= window.

3

js原型与原型链 - greenfavo

http://greenfavo.com/2015/12/14/js-prototype

Js有6种数据类型:Number,String,Boolean,Object,null,undefined,每个对象都有一个 proto 属性指向它的原型,于是该对象就获得了它原型对象上的一些属性和方法。 Var a=1; a. proto ;/ Number var str="hello"; str. proto ;/ String var obj={}; obj. proto ;/ Object. Var obj={ x:1, y:2, add:function(){ return this.x this.y; } }; var obj2={}; obj2. proto =obj; obj2.add();/ 3 obj2.add=function(m,n){ return m n 1; } obj2.add(1,3);/ 5. 当调用构造函数创建一个实例时,实例内部将包含一个内部指针 proto 指向构造函数的prototype,这个连接存在于实例和构造函数的prototype之间,而不是实例与构造函数。 Person.prototype.constructor = Person;. Var a={...

4

canvas

http://greenfavo.com/tag/canvas

5

准备HTTP/2:Web设计者和开发者的指南(翻译) - greenfavo

http://greenfavo.com/2016/04/20/ready-for-http2

准备专业英语课程论文时翻译的一篇文章,原文 Getting Ready For HTTP/2: A Guide For Web Designers And Developers. 主要是讲HTTP/2时的优化方案,总结起来就两点 HTTP/2需要跑在安全连接上,且需要服务器和浏览器同时支持 由于多路复用,HTTP连接在HTTP/2中很廉价,所以在HTTP/1.1中的关于减少HTTP请求的优化方案都不再是最佳实践。 你应该使用来自这些网站的数据比如 Can I Use. 通过用 support table on Can I Use.

UPGRADE TO PREMIUM TO VIEW 12 MORE

TOTAL PAGES IN THIS WEBSITE

17

LINKS TO THIS WEBSITE

bizhongbio.com bizhongbio.com

前端 | 双鱼bizhongbio - 渡人渡己,前端开发技术博客

http://www.bizhongbio.com/category/web

早前访问 Google Design 网站,在 Resources 目录下看到了 Material Design Lite 链接。 后来详细阅读 Material Design 文档,才明白 Material Design Lite (MDL) 是一个基于 Material Design 理念的 web 开发组件. 阅读全文. Movie 电影 是用 Node.js 和 MongoDB 实现的 Web 应用程序。 一、项目结构 - movie(项目根目录) - app(应用程序根目录) - controllers(控制器) - category.js(分类目录控制器) - comm. 阅读全文. 一、在HTML中使用CSS 查看我之前写过的文章 在HTML中使用CSS 二、CSS书写规范 位置属性 position,top,right,bottom,left,z-index,display,float 等 大小 width,height,padding,margin 等 文字系列 font,line-height,letter-spacing,color,text. 阅读全文. 一、前言 现今,无论是移...

bizhongbio.com bizhongbio.com

首页滚动特效 | 双鱼bizhongbio - 渡人渡己,前端开发技术博客

http://www.bizhongbio.com/home-scrolling-effects.html

页面渲染时,CSS3 实现文字动画 滑动页面时,JavaScript 实现改变背景图片的 background-position 属性和线性改变文字透明度。 DOCTYPE html html head meta charset="utf-8"/ meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" / title 首页滚动特效 /title meta name="keywords" content="双鱼,双鱼bizhongbio,bizhongbio"/ meta name="description" content="双鱼bizhongbio,是专注于分享web前端开发技术的个人博客。 双鱼bizhongbio, http:/ www.bizhongbio.com/". Width=device-width, initial-scale=1, minimum-scale=1". 0,0,0,.2. Head,#gallery-content h1,#gallery-content p,#gallery-content span.

bizhongbio.com bizhongbio.com

Node.js概述 | 双鱼bizhongbio - 渡人渡己,前端开发技术博客

http://www.bizhongbio.com/nodejs-summary.html

最近几年,Web 领域出现了一个全新的 JavaScript 开发框架 Node.js。 以下主要从什么是 Node.js 框架,使用 Node.js 框架能够解决什么问题,为什么要用 Node.js 框架,在哪些场合下应该考虑使用 Node.js 来展开概述。 一、什么是 Node.js 框架. 官网介绍 Node.js 是一个基于 Chrome V8. Nodejs 使用了一个事件驱动、非阻塞式 I/O 的模型,使其轻量又高效。 也就是说,Node.js 是一个基于 Chrome JavaScript 运行时建立的平台, 用于方便地搭建响应速度快、易于扩展的网络应用。 Nodejs 使用事件驱动, 非阻塞 I/O 模型而得以轻量和高效,非常适合在分布式设备上运行数据密集型的实时应用。 二、使用 Node.js 框架能够解决什么问题. 在 Java、PHP 或 ASP.NET 等服务器端语言中,为每一个客户端连接创建一个新的线程,而每一个线程需要耗费大约 2MB 的内存。 也就是说,理论上,具有 8GB 内存的服务器可以同时连接的最大用户数为 4000 个左右。 32 非阻塞型 I/O 及事件环机制.

bizhongbio.com bizhongbio.com

Hum-Start Within | 双鱼bizhongbio - 渡人渡己,前端开发技术博客

http://www.bizhongbio.com/hum-start-within.html

欣赏更多 Romain Briaux 作品 Romain Briaux on Behance. Romain Briaux, French graphic designer. 注明出处格式 双鱼bizhongbio http:/ www.bizhongbio.com/hum-start-within.html. 夏陌浅曦 2015.11.06 21:34. This website very nice, I liked it!

bizhongbio.com bizhongbio.com

HTML&CSS编码规范 | 双鱼bizhongbio - 渡人渡己,前端开发技术博客

http://www.bizhongbio.com/html-css-code-guide.html

用两个空格来代替制表符 tab – 这是唯一能保证在所有环境下获得一致展现的方法. 不要在自闭合 self-closing 元素的尾部添加斜线 — HTML5 规范. 不要省略可选的结束标签 closing tag ,例如 /li 、 /body。 DOCTYPE html html head title Page title /title /head body img src="images/company-logo.png" alt="Company" h1 class="hello-world" Hello, world! 为每个 HTML 页面的第一行添加标准模式 standard mode 的声明,这样能够确保在每个浏览器中拥有一致的展现。 DOCTYPE html html head /head /html. 强烈建议为 html 根元素指定 lang 属性,从而为文档设置正确的语言。 更多关于 lang 属性的知识可以从 此规范. IE 支持通过特定的 meta 标签来确定绘制当前页面所应该采用的 IE 版本。 阅读 stack overflow 上的文章. 使用 HTML link 标签.

bizhongbio.com bizhongbio.com

JavaScript实现侧边栏滚动特效 | 双鱼bizhongbio - 渡人渡己,前端开发技术博客

http://www.bizhongbio.com/javascript-sidebar-scroll-effects.html

右边文章可见区域高度 oarticleH 大于左边侧边栏可见区域高度 osidebarH 时触发 scrollEvent 事件。 如果网页被卷去的高度 scrollH 加上屏幕可视化区域高度 screenH 大于左边侧边栏可见区域高度 osidebarH ,左边侧边栏 osidebar 固定 属性 position 的属性值置为 fixed ,若滚动到右边文章底部,左边侧边栏 osidebar 不固定 属性 position 的属性值置为 absolute。 双鱼bizhongbio, http:/ www.bizhongbio.com/". Position:absolute;top:auto;bottom:0px;". 注明出处格式 双鱼bizhongbio http:/ www.bizhongbio.com/javascript-sidebar-scroll-effects.html. This website very nice, I liked it!

bizhongbio.com bizhongbio.com

电影预告片 | 双鱼bizhongbio - 渡人渡己,前端开发技术博客

http://www.bizhongbio.com/node-movie.html

Movie 电影 是用 Node.js 和 MongoDB 实现的 Web 应用程序。 注明出处格式 双鱼bizhongbio http:/ www.bizhongbio.com/node-movie.html. 夏陌 2016.08.09 09:47. This website very nice, I liked it!

bizhongbio.com bizhongbio.com

CSS总结 | 双鱼bizhongbio - 渡人渡己,前端开发技术博客

http://www.bizhongbio.com/css-summary.html

31 W3C的标准Box Model 标准 W3C 盒子模型. 外盒尺寸计算 元素空间尺寸 - Element 空间宽度 = content width padding border margin Element 空间高度 = content height padding border margin! 内盒尺寸计算 元素大小 - Element Width = content width padding border width 为内容宽度 Element Height = content height padding border height 为内容高度). 32 IE传统下Box Model IE 盒子模型. 外盒尺寸计算 元素空间尺寸 占据的空间 - Element 空间宽度 = content width margin (width 包含了元素内容宽度、边框宽度、内距宽度) Element 空间高度 = content height margin (height 包含了元素内容宽度、边框宽度、内距宽度)! 外盒尺寸计算 元素空间尺寸 占据的空间 -. 内盒尺寸计算 元素大小 盒子的实际大小 -.

bizhongbio.com bizhongbio.com

暑假总结 | 双鱼bizhongbio - 渡人渡己,前端开发技术博客

http://www.bizhongbio.com/summer-summary.html

正所谓,没有 磨砺 ,哪来的 聚变。 编写网站模板代码,将中南民族大学MBA教育中心网站迁移至 Webplus 2008 高校网站群管理平台 上。 注明出处格式 双鱼bizhongbio http:/ www.bizhongbio.com/summer-summary.html. This website very nice, I liked it!

bizhongbio.com bizhongbio.com

民大设备处改版 | 双鱼bizhongbio - 渡人渡己,前端开发技术博客

http://www.bizhongbio.com/new-scuec-sbc.html

10 月我和另一个伙伴接了 中南民族大学实验室与设备管理处改版 的项目,该项目于 2015 年 10 月 30 日正式上线。 注明出处格式 双鱼bizhongbio http:/ www.bizhongbio.com/new-scuec-sbc.html. 你哪妹 2015.11.19 19:47. This website very nice, I liked it!

UPGRADE TO PREMIUM TO VIEW 7 MORE

TOTAL LINKS TO THIS WEBSITE

17

OTHER SITES

greenfaulds.wordpress.com greenfaulds.wordpress.com

Greenfaulds High School | If you've got it, blog it.

If you've got it, blog it. December 2, 2014. Middot; by apusram. Middot; in Books. Middot; Leave a comment. This month the book club read “Loser” by Jerry Spinelli, in which our so called “Loser”, AKA Zinkoff, turns out to everything but! Our reviews will be posted here so watch this space… Advertisements. BLOGGING CLUB – RE-STARTS FRIDAY 11TH JANUARY 2013 IN LRC. January 11, 2013. Middot; by apusram. Middot; in School Life. Middot; Leave a comment. October 12, 2012. Middot; by apusram. Middot; 1 Comment.

greenfauldsbc.com greenfauldsbc.com

Home

Site designed and maintained by Greenfaulds BC. Scottish Young Bowlers Association. This page will be updated. As often as possible to. News about our club. Here you will find a. Small history of our club,. Including lists of past. All our social events will. Be listed on here, plus. The posters to look out. For around the clubhouse. In this section, you can view our. Constitution, health and safety. Regulations and bar license agreement. This section of our website provides you. Of events within the club.

greenfauldsdivers.co.uk greenfauldsdivers.co.uk

Greenfaulds Divers | Scuba Diving Cumbernauld – ScotSAC

Scuba Diving Cumbernauld – ScotSAC. Club Dive 3rd Dec. Club Diving 3rd Sept 2017. Club Diving Day Loch Fyne 1st Jul 2017. Paul Lafferty, Andrew Powls, Bill Hamilton and Robert Ross went to Anchor Point for a couple of dives. The weather started well although the rain arrived by the end of diving. No midges today though! Viz was generally good and we saw a good selection of life on the reefs including a good sized scorpion fish. I’ve included some pics on our facebook page. Club Dive 18th June.

greenfauna.com greenfauna.com

Price Request - BuyDomains

Url=' escape(document.location.href) , 'Chat367233609785093432', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=500');return false;". Need a price instantly? Just give us a call. Toll Free in the U.S. We can give you the price over the phone, help you with the purchase process, and answer any questions. Get a price in less than 24 hours. Fill out the form below. One of our domain experts will have a price to you within 24 business hours. United States of America.

greenfauxpaws.deviantart.com greenfauxpaws.deviantart.com

greenfauxpaws (Z) - 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 7 Years. This deviant's full pageview. Last Visit: 9 weeks ago. This is the place where you can personalize your profile! Share a S...

greenfavo.com greenfavo.com

greenfavo - 前端学习笔记

准备专业英语课程论文时翻译的一篇文章,原文Getting Ready For HTTP/2: A Guide For Web Designers And Developers。 不错的文章,内容气吞山河.禁止此消息 nolinkok@163.com. 不错的文章,内容惜墨如金.禁止此消息 nolinkok@163.com. 三五营销www.ak47.356688.com. 不错的文章,内容完美无缺.禁止此消息 nolinkok@163.com.

greenfavorites.com greenfavorites.com

www.greenfavorites.com

A new project is coming to you. If you want to know what will expect you here shortly, check out the reel:.

greenfavors.com greenfavors.com

Price Request - BuyDomains

Url=' escape(document.location.href) , 'Chat367233609785093432', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=500');return false;". Need a price instantly? Just give us a call. Toll Free in the U.S. We can give you the price over the phone, help you with the purchase process, and answer any questions. Get a price in less than 24 hours. Fill out the form below. One of our domain experts will have a price to you within 24 business hours. United States of America.

greenfavour.com greenfavour.com

绿恩资讯网—健康|环保|资讯|生活|图片-绿恩在线::greenfavour.com

吉林财经大学国际交流学院 吉林财经大学商学院 吉林财经大学 学院. 文玩八方论坛 文玩八方网站 文玩八方 十里河店. 产妇 捂月子 中暑死亡 评论 陋习得改. 徐畅 对规则说 NO 在艺术里自由 造境. MH370迷雾 飞机经历过 僵尸飞行 吗. 德国女子遭流弹击中 幸有胸衣 防弹 免受重伤. 吉林财经大学国际交流学院 吉林财经大学商学院 吉林财经大学 学院. 甫读什么,西尔扎提.亚合甫,甫怎么读. 隔壁的男孩 删减,隔壁的男孩,隔壁的男孩未删减版. 西尔扎提亚合甫,西尔扎提 巴吾东,甫怎么读.

greenfavplz.deviantart.com greenfavplz.deviantart.com

greenfavplz - 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 4 Years. This deviant's full pageview. Last Visit: 260 weeks ago. This is the place where you can personalize your profile! Jul 13,...

greenfax.it greenfax.it

Greenfax2.0