自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(1)
  • 资源 (30)
  • 收藏
  • 关注

原创 vscode 搭建go开发环境

安装go这个按官方文档装好就行了。获取Go相关工具以下为MAC终端,linux应该一样, windows 不管了。。。 终端运行以下命令cd ~mkdir gotools #这个文件夹可以用自己命名 以下用到的地方全部替换自己的就可以了cd gotoolsexport GOPATH=$(pwd)go get -u -v github.com/nsf/gocodego get -u -v g

2017-01-06 11:01:32 7827

webstorm 配色方案 linux版

webstorm 配色方案 linux版 使用sublime风格

2015-12-28

webstorm 配色方案

windows版 使用sublime风格,自用。

2015-12-28

快乐Linux命令行

新手学习linux 循序渐进的一个好书。 微博名人推荐。

2014-10-14

Meteor API DDP demo

博客 http://blog.csdn.net/a6383277/article/details/23656929的示例代码

2014-04-15

Meteor Session demo

博客http://blog.csdn.net/a6383277/article/details/23421611 的示例代码

2014-04-11

meteor系列博客demo-004

博客 http://blog.csdn.net/a6383277/article/details/23100421涉及到的源码

2014-04-07

meteor系列博客demo-003

来自于meteor系列博客. API publish and subcribe describe

2014-03-28

meteor的router库

router在window下的包。可以在linux和windows在进行使用。具体使用请参考我的博客:http://blog.csdn.net/a6383277/article/details/17125775

2013-12-04

博客Meteor.render源码

博客 《Meteor.render 用法》 涉及到的代码

2013-11-14

Head First Servlets and JSP, 2nd Edition.pdf

Head First Servlets and JSP 第二版 纯英文 高清非扫描版本

2013-11-11

Head First JavaScript

Head First JavaScript。 js开发 学习资料。高清非扫描版本

2013-11-11

Head First Android Development.pdf

Head First Android Development ,高清非影印 纯英文版本。 安卓 Android开发。

2013-11-11

Head First Ajax

Head First Ajax.pdf 纯英文版本。非影印扫描版

2013-11-11

getting started with meteor

getting started with meteor meteor 入门教材

2013-11-06

d3.js 快速入门

d3的快速入门资料。纯英文版 Preface. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ix 1. Introduction. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Why Data Visualization? 1 Why Write Code? 2 Why Interactive? 2 Why on the Web? 3 What This Book Is 3 Who You Are 4 What This Book Is Not 5 Using Sample Code 5 Thank You 6 2. Introducing D3. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 What It Does 7 What It Doesn’t Do 8 Origins and Context 9 Alternatives 10 Easy Charts 10 Graph Visualizations 12 Geomapping 12 Almost from Scratch 13 Three-Dimensional 13 Tools Built with D3 14 3. Technology Fundamentals. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 The Web 15 HTML 17 Content Plus Structure 18 iii Adding Structure with Elements 19 Common Elements 20 Attributes 22 Classes and IDs 22 Comments 23 DOM 24 Developer Tools 24 Rendering and the Box Model 27 CSS 29 Selectors 29 Properties and Values 31 Comments 31 Referencing Styles 31 Inheritance, Cascading, and Specificity 33 JavaScript 35 Hello, Console 35 Variables 35 Other Variable Types 36 Arrays 36 Objects 37 Objects and Arrays 38 Mathematical Operators 40 Comparison Operators 41 Control Structures 41 Functions 43 Comments 44 Referencing Scripts 44 JavaScript Gotchas 45 SVG 49 The SVG Element 50 Simple Shapes 50 Styling SVG Elements 53 Layering and Drawing Order 54 Transparency 55 A Note on Compatibility 57 4. Setup. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59 Downloading D3 59 Referencing D3 60 Setting Up a Web Server 61 Terminal with Python 61 MAMP, WAMP, and LAMP 62 iv | Table of Contents Diving In 62 5. Data. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63 Generating Page Elements 63 Chaining Methods 65 One Link at a Time 66 The Hand-off 67 Going Chainless 67 Binding Data 67 In a Bind 67 Data 68 Please Make Your Selection 72 Bound and Determined 73 Using Your Data 76 High-Functioning 77 Data Wants to Be Held 78 Beyond Text 79 6. Drawing with Data. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81 Drawing divs 81 Setting Attributes 82 A Note on Classes 83 Back to the Bars 83 Setting Styles 84 The Power of data() 85 Random Data 87 Drawing SVGs 89 Create the SVG 89 Data-Driven Shapes 90 Pretty Colors, Oooh! 92 Making a Bar Chart 92 The Old Chart 93 The New Chart 93 Color 98 Labels 101 Making a Scatterplot 103 The Data 103 The Scatterplot 104 Size 105 Labels 106 Table of Contents | v Next Steps 107 7. Scales. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109 Apples and Pixels 109 Domains and Ranges 110 Normalization 111 Creating a Scale 111 Scaling the Scatterplot 112 d3.min() and d3.max() 112 Setting Up Dynamic Scales 114 Incorporating Scaled Values 114 Refining the Plot 115 Other Methods 119 Other Scales 119 8. Axes. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121 Introducing Axes 121 Setting Up an Axis 122 Cleaning It Up 123 Check for Ticks 126 Y Not? 127 Final Touches 128 Formatting Tick Labels 130 9. Updates, Transitions, and Motion. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 133 Modernizing the Bar Chart 133 Ordinal Scales, Explained 134 Round Bands Are All the Range These Days 136 Referencing the Ordinal Scale 136 Other Updates 137 Updating Data 137 Interaction via Event Listeners 138 Changing the Data 139 Updating the Visuals 139 Transitions 142 duration(), or How Long Is This Going to Take? 143 ease()-y Does It 144 Please Do Not delay() 145 Randomizing the Data 147 Updating Scales 150 Updating Axes 152 each() Transition Starts and Ends 153 vi | Table of Contents Other Kinds of Data Updates 161 Adding Values (and Elements) 161 Removing Values (and Elements) 166 Data Joins with Keys 169 Add and Remove: Combo Platter 174 Recap 176 10. Interactivity. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 177 Binding Event Listeners 177 Introducing Behaviors 178 Hover to Highlight 179 Grouping SVG Elements 184 Click to Sort 185 Tooltips 188 Default Browser Tooltips 189 SVG Element Tooltips 190 HTML div Tooltips 192 Consideration for Touch Devices 195 Moving Forward 195 11. Layouts. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 197 Pie Layout 198 Stack Layout 202 Force Layout 206 12. Geomapping. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 213 JSON, Meet GeoJSON 213 Paths 215 Projections 216 Choropleth 219 Adding Points 222 Acquiring and Parsing Geodata 226 Find Shapefiles 226 Choose a Resolution 226 Simplify the Shapes 228 Convert to GeoJSON 228 13. Exporting. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 233 Bitmaps 233 PDF 234 Table of Contents | vii SVG 235 A. Appendix: Further Study. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 241 Index. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 245

2013-10-10

D3.JS 基于javascript的图表展示库<六>-基本柱状图2

D3.JS 基于javascript的图表展示库<六>-基本柱状图2 博客地址 http://blog.csdn.net/a6383277/article/details/8768412

2013-04-07

D3.JS 基于javascript的图表展示库<五>-基本柱状图1

D3.JS 基于javascript的图表展示库<五>-基本柱状图1 博客地址http://blog.csdn.net/a6383277/article/details/8762638

2013-04-05

D3.JS 基于javascript的图表展示库<四>----基本元素选择与Table

D3.JS 基于javascript的图表展示库<四>----基本元素选择与Table 见博客http://blog.csdn.net/a6383277/article/details/8742906

2013-03-31

D3.JS 基于javascript的图表展示库<三>----基本元素绑定

D3.JS 基于javascript的图表展示库<三>----基本元素绑定 所对应的源码

2013-03-23

02基础选择器--select和selecAll,源码

博文 http://blog.csdn.net/a6383277/article/details/8683421 所对应的源代码

2013-03-17

Meteor的publish和subscrbe简单介绍

相关文章见我博客http://write.blog.csdn.net/postlist/1349771/all

2013-03-02

GitHub入门到精通

GitHub的入门到精通 非常适合新手学习 本人找了很多网站才找到这个,然后又花费事件把他们整理出来了,非常好,讲解非常详细,很有实用价值。 花费5个资源分下载觉得值得!

2012-12-12

CXF WebService实例

CXF WebService java实例 例子包括基本的 HelloWord列子 还有传递List ,Map的列子 另外还有webservice 文件下载上传的示例

2012-11-28

FlexPaper 二次开发教程

FlexPaper 二次开发教程的二次开发 使用 FlexPaper是一块轻量级组件,可以模仿百度文库预览文档的样式

2012-10-17

quickchm V3.4

quickchm V3.4 带注册码 用于制作chm格式帮助文档 压缩包内带注册码 可以讲多个html转成 chm格式

2012-10-10

zip4j集合包Demo,Source,API

java中用文件压缩,文件解压,文件压缩加密,文件分卷压缩等。由于ZIP4J被墙了,查看下载不方便,特意翻过去 下载下来方便众网友。该资源包括了ZIP4j的源码,Demo等,看一看就能知道用了。

2012-09-27

SimpleColorPick 网页取色器 桌面取色器

在网页设计中,经常需要用到某种颜色,却不知道颜色的值,用这个取色器,可以任意获取到任意桌面的,网页的定点颜色。

2012-05-09

W3chool完全参考文档教程

领先的 Web 技术教程 - 全部免费 在w3school,你可以找到你所需要的所有的网站建设教程。 从基础的HTML到XHTML,乃至进阶的XML、SQL、数据库、多媒体和WAP。

2012-05-05

设计模式之禅 PDF版

设计模式之禅 PDF版 我希望这本书的阅读者具备最基本的代码编写能力,您是一个初级的coder,可以从中领会到怎么设计一段优秀的代码;您是一个高级程序员,可以从中全面了解到设计模式以及Java的边角技术的使用;您是一个顶级的系统分析师,可以从中获得共鸣,寻找到项目公共问题的解决办法,呀,是不是把牛吹大了?!

2012-05-05

Jquery中文 API V1.6-1.7

Jquery 1.6-1.7版的中文API ,使用IE 浏览效果更好

2012-05-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除