- D3.js 4.x Data Visualization(Third Edition)
- ?ndrew Rininsland Swizec Teller
- 145字
- 2021-07-02 23:20:25
A Primer on DOM, SVG, and CSS
You might already be used to manipulating DOM and CSS with libraries such as jQuery; if so, much of this will seem very familiar, as D3 has a full suite of manipulation tools. If not, don't worry, as this chapter exists to get everyone up to speed.
Very similar to HTML's DOM is the SVG namespace, which we'll use for most of the examples in this book. SVG is at the core of building truly great visualizations, so we'll take special care to understand it, starting out by manually drawing shapes and then doing the same using D3's path generators in Chapter 3, Shape Primitives of D3.
In this chapter, we'll take a look at the core technologies that make D3 tick. They are as follows:
- Document Object Model (DOM)
- Scalable Vector Graphics (SVG)
- Cascading Style Sheets (CSS)
推薦閱讀
- The Supervised Learning Workshop
- Mastering Natural Language Processing with Python
- Android 7編程入門經典:使用Android Studio 2(第4版)
- Practical Windows Forensics
- 用Python實現深度學習框架
- Python Data Science Cookbook
- PHP編程基礎與實踐教程
- Python網絡爬蟲技術與應用
- OpenCV 3 Blueprints
- 零基礎C#學習筆記
- 軟件測試技術
- C++服務器開發精髓
- Flutter之旅
- 分布式系統架構與開發:技術原理與面試題解析
- Python GUI設計:tkinter菜鳥編程