Next Section: DOM事件流理论1101 plays

5 秒后自动播放下一节
  Watch Again

JavaScript basic syntax [dom|bom|es6 new syntax|jQuery|data visualization echarts]

Introduction >
ChapterCourseware
Chapter1Computer Basics

Introduction to computer basics

01 minutes29 seconds

programming language

09 minutes19 seconds

Computer Basics

09 minutes23 seconds
Chapter2Introduction to JavaScript

Introduction to JavaScript

00 minutes52 seconds

First introduction to JavaScript

07 minutes28 seconds

The browser executes the js process

03 minutes58 seconds

js consists of three parts

03 minutes57 seconds

js three writing positions

06 minutes51 seconds
Chapter3Comments and variables

Comment

03 minutes14 seconds

Input and output statements

04 minutes15 seconds

Introduction to variables

00 minutes52 seconds

what is a variable

04 minutes45 seconds

Use of variables

06 minutes20 seconds

Variable case

03 minutes03 seconds

Variable case popup username

03 minutes09 seconds

Variable syntax expansion

08 minutes41 seconds

Variable naming convention

09 minutes48 seconds

Transform the values ​​of 2 variables

07 minutes53 seconds

Variable summary

02 minutes05 seconds
Chapter4type of data

Introduction to data types

00 minutes55 seconds

Introduction to data types

06 minutes17 seconds

NumericNumber

11 minutes32 seconds

isNaN

02 minutes17 seconds

String type

07 minutes35 seconds

Pop up web page warning box

01 minutes59 seconds

String length and concatenation

07 minutes32 seconds

String splicing enhancement

05 minutes53 seconds

show age case

04 minutes05 seconds

boolean as well as undefined and null

07 minutes19 seconds

typeof detects variable data type

05 minutes28 seconds

literal

02 minutes17 seconds

Convert to string type

07 minutes20 seconds

Convert to numeric parseInt and parseFloat

07 minutes38 seconds

Convert to numeric Number and implicit conversion

03 minutes25 seconds

Calculate age case

04 minutes24 seconds

Simple adder case

04 minutes51 seconds

Convert to boolean

02 minutes03 seconds

Extended reading on the difference between compiled and interpreted languages

03 minutes46 seconds

Extended Reading: Identifier Keywords Reserved Words

02 minutes37 seconds

after class homework

00 minutes55 seconds
Chapter5operator

Introduction to operators

00 minutes44 seconds

arithmetic operators

09 minutes35 seconds

Expressions and return values

03 minutes29 seconds

prepended increment operator

06 minutes38 seconds

Postfix increment operator

03 minutes53 seconds

Increment Operator Exercise

05 minutes38 seconds

Summary of pre-increment and post-increment

03 minutes03 seconds

comparison operator

06 minutes56 seconds

Logical Operators

06 minutes37 seconds

Logical operator exercises

02 minutes46 seconds

Logical interrupt, logical AND

06 minutes38 seconds

logical interrupt, logical or

04 minutes08 seconds

assignment operator

03 minutes20 seconds

operator precedence

07 minutes15 seconds
Chapter6process control

Introduction to process control branch structure

00 minutes54 seconds

process control

02 minutes38 seconds

if branch statement

06 minutes18 seconds

Enter the Internet cafe case

02 minutes43 seconds

ifelse double branch statement

06 minutes08 seconds

Determine leap year cases

06 minutes37 seconds

if else if multi-branch statement

07 minutes24 seconds

Judging grade cases

08 minutes15 seconds

ternary expression

05 minutes13 seconds

Digital 0 filling case

05 minutes01 seconds

switch statement

09 minutes23 seconds

Switch precautions

05 minutes13 seconds

Query fruit cases

04 minutes23 seconds

The difference between switch and ifelseif

05 minutes32 seconds
Chapter7cycle

Reading cycle

01 minutes07 seconds

purpose of loop

03 minutes18 seconds

for loop syntax structure

08 minutes24 seconds

for loop execution process

06 minutes20 seconds

Power off debugging

06 minutes52 seconds

for loop executes the same code repeatedly

02 minutes38 seconds

for loop repeatedly executes different codes

04 minutes48 seconds

for loop repeats certain operations

05 minutes23 seconds

for loop case

07 minutes04 seconds

Case study of student performance (Part 1)

06 minutes50 seconds

Case study of student performance (Part 2)

05 minutes00 seconds

Print five stars in one line

05 minutes15 seconds

Double for loop execution process

07 minutes29 seconds

Print stars in 5 rows and 5 columns

04 minutes49 seconds

Print stars in n rows and n columns

02 minutes58 seconds

Print inverted triangle case

06 minutes35 seconds

multiplication table

09 minutes33 seconds

for loop summary

02 minutes17 seconds

while loop

06 minutes06 seconds

while case

05 minutes43 seconds

do while loop

04 minutes24 seconds

do while case

04 minutes00 seconds

Cycle summary

01 minutes50 seconds

continue keyword

06 minutes04 seconds

break keyword

02 minutes38 seconds

Naming convention and syntax format

02 minutes37 seconds

Cycle work

02 minutes09 seconds
Chapter8array

Introduction to arrays

00 minutes53 seconds

What is an array and how to create it

08 minutes05 seconds

Access array elements

06 minutes30 seconds

Traverse array

05 minutes19 seconds

array length

03 minutes57 seconds

Calculate sum and average of arrays

06 minutes00 seconds

Find the maximum value in an array

06 minutes19 seconds

Convert array to string

04 minutes02 seconds

Add new element to array

07 minutes39 seconds

Array stores 1~10 values

04 minutes03 seconds

filter array method

05 minutes59 seconds

Filter array method 2

04 minutes10 seconds

Delete the specified element from the array (array deduplication)

03 minutes10 seconds

flip array

06 minutes51 seconds

Review Swapping Two Variable Values

02 minutes31 seconds

Bubble sort principle

04 minutes45 seconds

Bubble Sort

12 minutes18 seconds
Chapter9function

Function introduction

00 minutes53 seconds

Why functions are needed

04 minutes59 seconds

Function usage

05 minutes03 seconds

Use functions to find the cumulative sum of 1~100

02 minutes32 seconds

function parameters

08 minutes13 seconds

Use functions to find the sum of any two numbers and the cumulative sum

04 minutes56 seconds

Function parameter and actual parameter matching problem

06 minutes38 seconds

function return value

08 minutes16 seconds

Use functions to find the maximum of two numbers

02 minutes55 seconds

Use function to find the maximum value in an array

05 minutes53 seconds

return terminates the function and can only return one value

06 minutes14 seconds

2 things to note about function return values

02 minutes45 seconds

Seeing through functions through a juicer

02 minutes02 seconds

Use of arguments

08 minutes56 seconds

Use functions to find the maximum value of any number

02 minutes52 seconds

Flip an array using a function

03 minutes41 seconds

Function encapsulation bubble sort

03 minutes24 seconds

Use function to determine leap year

03 minutes41 seconds

A function can call another function

05 minutes22 seconds

Output the number of days in February

06 minutes24 seconds

Two ways to declare functions

05 minutes15 seconds

Scope introduction

00 minutes47 seconds

javascript scope

07 minutes08 seconds

Global variables and local variables

07 minutes51 seconds

javascript does not have block level scope

02 minutes13 seconds

scope chain

04 minutes58 seconds

Scope chain case

05 minutes10 seconds
Chapter10preparse

JavaScript pre-parsing guide

00 minutes36 seconds

preparse

13 minutes15 seconds

Preparation case

12 minutes00 seconds
Chapter11object

Object introduction

00 minutes45 seconds

What are objects and why are they needed

07 minutes24 seconds

Create objects using object literals

10 minutes23 seconds

The difference between variable attribute function method

05 minutes22 seconds

Create objects using new Object

04 minutes19 seconds

Why do we need constructors

04 minutes45 seconds

Constructor creates object (Part 1)

10 minutes22 seconds

Constructor creates object (Part 2)

05 minutes15 seconds

The difference between constructor and object

03 minutes30 seconds

new keyword execution process

03 minutes42 seconds

Traverse objects

05 minutes23 seconds

Summary and assignments

01 minutes45 seconds
Chapter12built-in objects

Built-in object guide

01 minutes17 seconds

What are built-in objects

03 minutes13 seconds

Learn to query MDN documentation

06 minutes09 seconds

Math maximum value method of mathematical object

06 minutes16 seconds

Guess the number game

06 minutes51 seconds

Use of Date object

08 minutes03 seconds

Format date year month day week

10 minutes47 seconds

Format date hours minutes seconds

06 minutes27 seconds

Date total number of milliseconds (timestamp)

06 minutes57 seconds

Countdown (Part 1)

07 minutes31 seconds

Countdown (Part 2)

05 minutes31 seconds

Two ways to create an array

04 minutes58 seconds

Two ways to detect whether it is an array

06 minutes53 seconds

Add array elements

06 minutes30 seconds

Delete array elements

03 minutes44 seconds

filter array

02 minutes36 seconds

Array sort

05 minutes47 seconds

Get array element index

05 minutes13 seconds

Array deduplication case

07 minutes29 seconds

Convert array to string

03 minutes49 seconds

Basic packaging types

04 minutes52 seconds

String is immutable

04 minutes08 seconds

Return position based on character

03 minutes22 seconds

Find the position and number of occurrences of a certain character

06 minutes28 seconds

Return characters based on position

04 minutes54 seconds

Count the most frequently occurring characters (Part 1)

09 minutes38 seconds

Count the most frequently occurring characters (Part 2)

03 minutes17 seconds

Splicing and intercepting strings

03 minutes16 seconds

Replace strings and convert to arrays

06 minutes35 seconds

Introduction to simple data types and complex data types

00 minutes38 seconds

Data type memory allocation

08 minutes23 seconds

Simple data type parameter passing

03 minutes18 seconds

Passing parameters of complex data types

05 minutes50 seconds
Chapter13web apis

Introduction to web apis

00 minutes50 seconds

The correlation between the two stages of js basics and web apis

03 minutes46 seconds

api and web apis

05 minutes06 seconds
Chapter14DOM

Introduction to DOM

01 minutes05 seconds

Introduction to DOM

04 minutes54 seconds

getElementByid gets the element

08 minutes16 seconds

getElementsByTagName Gets a certain type of tag element

11 minutes31 seconds

H5 adds new way to obtain elements

08 minutes35 seconds

Get body and html elements

02 minutes58 seconds

three elements of event

06 minutes26 seconds

Execute event process

04 minutes05 seconds

Manipulate elements to modify element content

08 minutes16 seconds

The difference between innerText and innerHTML

06 minutes05 seconds

Manipulate elements - modify element attributes

05 minutes53 seconds

Time-sharing greeting case

06 minutes14 seconds

Operation element-modify form attributes

06 minutes46 seconds

Example of imitating JD.com to display hidden passwords in clear text (Part 1)

07 minutes23 seconds

Example of imitating JD.com to display hidden passwords in clear text (Part 2)

08 minutes06 seconds

Manipulate elements - modify style attributes

05 minutes16 seconds

Case of imitation Taobao closing QR code

05 minutes04 seconds

Looping sprites

08 minutes55 seconds

Show hidden text box content

10 minutes04 seconds

Use className to modify style attributes

09 minutes28 seconds

Password box verification information

09 minutes42 seconds

Summary of operational elements and assignments

03 minutes43 seconds
Chapter15Skin resurfacing and discoloration effects

Exclusive thinking (algorithm)

09 minutes01 seconds

Baidu skin resurfacing effect

08 minutes19 seconds

Table alternate row color changing effect

07 minutes26 seconds

Form Select All Cancel Select All (Part 1)

07 minutes33 seconds

Form Select All Cancel Select All (Part 2)

09 minutes26 seconds

Get custom attribute value

05 minutes04 seconds

Set remove custom properties

04 minutes54 seconds

Tab bar switching layout analysis (important)

04 minutes18 seconds

Tab bar switching production (Part 1)

04 minutes10 seconds

Tab bar switching production (Part 2)

09 minutes05 seconds

H5 custom attributes

04 minutes15 seconds
Chapter16Node operations

Why learn node operations and node introduction

07 minutes03 seconds

The parent node of the node operation

04 minutes15 seconds

child node

06 minutes05 seconds

first child element and last child element

06 minutes44 seconds

Sina drop down menu

06 minutes31 seconds

Node operation's sibling node

05 minutes15 seconds

Node operations: create and add nodes

08 minutes10 seconds

Simple version of posting message case

08 minutes38 seconds

Node operation-delete node

05 minutes10 seconds

Delete message case

08 minutes14 seconds

Node operation-copy node

04 minutes57 seconds

Dynamically generate tables - create student data

05 minutes44 seconds

Dynamically generate tables - create rows

03 minutes44 seconds

Dynamically generate tables - create cells

05 minutes04 seconds

Dynamically generate tables - fill cells with data

03 minutes06 seconds

Dynamically generate tables - create and delete cells

03 minutes09 seconds

Dynamically generate tables - add and delete operations

04 minutes11 seconds

document.write creates elements (understand)

04 minutes41 seconds

Comparison of efficiency between innerHTML and createElement

07 minutes51 seconds
Chapter17event

DOM key core

06 minutes05 seconds

Advanced guide to events

01 minutes16 seconds

Two ways to register events

08 minutes26 seconds

attachEvent registration event

05 minutes22 seconds

delete event

08 minutes18 seconds

DOM event flow theory

04 minutes39 seconds

DOM event flow code verification

07 minutes51 seconds

What is an event object

08 minutes05 seconds

The difference between e.target and this

08 minutes18 seconds

Block default behavior

06 minutes34 seconds

Prevent events from bubbling up

04 minutes41 seconds

event delegation

06 minutes35 seconds

Disable text selection and right-click menu

04 minutes36 seconds

Get the coordinates of the mouse on the page

07 minutes28 seconds

Angel following the mouse

07 minutes43 seconds

Commonly used keyboard events

06 minutes49 seconds

keyCode determines which key the user pressed

07 minutes30 seconds

Case study of simulating JD key input content

05 minutes17 seconds

Simulate Jingdong express tracking number inquiry (Part 1)

06 minutes59 seconds

Simulate Jingdong express tracking number inquiry (Part 2)

06 minutes03 seconds
Chapter18BOM

BOM introduction

00 minutes57 seconds

BOM overview

08 minutes41 seconds

page load event

08 minutes23 seconds

window resize event

05 minutes16 seconds

Timer setTimeout

07 minutes16 seconds

Callback function and ads that automatically close after 5 seconds

03 minutes59 seconds

clear timer

03 minutes02 seconds

Timer setInterval

03 minutes33 seconds

Countdown effect

08 minutes12 seconds

clear timer

04 minutes46 seconds

Send SMS case

07 minutes50 seconds

this points to the problem

07 minutes55 seconds
Chapter19js sync and asynchronous

Synchronous and asynchronous

04 minutes52 seconds

Synchronous task and asynchronous task execution process

06 minutes15 seconds

js execution mechanism

06 minutes49 seconds

Common properties of location objects

06 minutes00 seconds

Jump to the page after 5 seconds

06 minutes15 seconds

Get URL parameters

11 minutes00 seconds

Common methods of location

04 minutes11 seconds

navigator object

04 minutes49 seconds

history object

04 minutes28 seconds

Introduction to web page special effects on PC

00 minutes50 seconds
Chapter20Get mouse coordinates

offsetLeft and offsetTop get the element offset

04 minutes45 seconds

offsetWidth and offsetHeight get the element size

05 minutes08 seconds

The difference between offset and style

03 minutes41 seconds

Get the coordinates of the mouse inside the box

06 minutes02 seconds
Chapter21Drag modal box

Drag modal box (top)

06 minutes06 seconds

Drag modal box (middle)

09 minutes55 seconds

Drag the modal box (below)

02 minutes49 seconds
Chapter22Imitation Jingdong magnifying glass effect

Building a page structure that imitates Jingdong’s magnifying glass effect

06 minutes46 seconds

Imitation Jingdong magnifying glass effect showing hidden barriers and large boxes

05 minutes24 seconds

Imitation Jingdong magnifying glass effect occlusion layer follows the mouse

08 minutes28 seconds

Jingdong magnifying glass imitation effect limits the movement range of the occlusion layer

06 minutes59 seconds

Imitation Jingdong magnifying glass effect large picture movement

08 minutes37 seconds
Chapter23Imitation Taobao effect

client series

02 minutes29 seconds

Execute function immediately

08 minutes06 seconds

The core principles of Taobao flexiJS source code analysis

07 minutes27 seconds

Taobao flexibleJS source code analysis pagesshow event

06 minutes58 seconds

scroll series

05 minutes25 seconds

Imitation Taobao fixed sidebar (Part 1)

08 minutes09 seconds

Imitation Taobao fixed sidebar (below)

10 minutes24 seconds

Summary of three major series

01 minutes52 seconds
Chapter24Ease animation

The difference between mouseover and mouseenter

02 minutes56 seconds

Animation principles

06 minutes54 seconds

Simple animation function encapsulation

04 minutes33 seconds

The animation function records different timers for different elements

08 minutes11 seconds

Principle of easing animation

05 minutes29 seconds

Basic code implementation of easing animation

04 minutes36 seconds

Easing animation to move between multiple target values

07 minutes23 seconds

Add callback function for easing animation

05 minutes54 seconds

Use of animation functions

08 minutes31 seconds
Chapter25Web page carousel

Web page carousel chart structure construction

06 minutes40 seconds

Web page carousel - display and hide the left and right buttons when the mouse passes

06 minutes54 seconds

Web page carousel-dynamically generated small circles

07 minutes37 seconds

Web page carousel chart-small circle exclusive thought

03 minutes26 seconds

Web page carousel - click on the small circle to scroll through the images

09 minutes48 seconds

Web page carousel - seamless scrolling with buttons on the right

11 minutes10 seconds

Web page carousel - clone the first picture

03 minutes50 seconds

The small circle of the web page carousel changes with the button on the right

05 minutes12 seconds

Web page carousel-two small BUG solutions

05 minutes50 seconds

Web page carousel image-left button function production

07 minutes12 seconds

Web page carousel-auto play function

04 minutes36 seconds
Chapter26Mobile web page special effects

Throttle valve and logic interrupt application

07 minutes39 seconds

Return to top with animation

10 minutes07 seconds

Somersault cloud case

10 minutes14 seconds

Introduction to mobile website special effects

00 minutes59 seconds

Mobile touch event

04 minutes29 seconds

Mobile TouchEvent touch event object

11 minutes00 seconds

Drag elements on mobile

10 minutes05 seconds

Mobile terminal carousel chart-structure construction

05 minutes40 seconds

Mobile Carousel Chart-Layout Analysis

07 minutes43 seconds

Mobile carousel-scrolling pictures

08 minutes01 seconds

Mobile carousel-seamless scrolling

08 minutes32 seconds

classList class name operation

08 minutes09 seconds

Mobile carousel chart - small dots follow changes

05 minutes06 seconds

Carousel chart on mobile terminal - drag carousel chart with finger

07 minutes45 seconds

Mobile carousel - slide your finger to play the previous and next pictures

07 minutes01 seconds

Mobile carousel image-rebound effect

05 minutes39 seconds

Return to top module production

04 minutes41 seconds

Solution to the 300ms delay problem of click events on mobile terminals

05 minutes48 seconds

faskclick plug-in usage

06 minutes44 seconds

Swiper plug-in use-reference related files

06 minutes43 seconds

Mobile carousel image - used according to grammar specifications

07 minutes01 seconds

swiper plug-in usage-parameter change

04 minutes06 seconds

Other mobile plug-ins and usage summary

03 minutes22 seconds

Use of video plug-in zy.media.js

07 minutes53 seconds

bootstrap carousel

10 minutes32 seconds

Alibaba 100 show carousel picture production

09 minutes38 seconds
Chapter27local storage

Local storage guide

00 minutes31 seconds

Local storage sessionStorage

11 minutes48 seconds

localStroge of local storage

05 minutes24 seconds

Remember username case

05 minutes53 seconds
Chapter28jQuery

An introduction to jQuery

00 minutes44 seconds

JavaScript library

03 minutes11 seconds

jQuery overview

03 minutes04 seconds

Basic usage of jQuery-entry function

07 minutes54 seconds

jQuery top-level object

03 minutes17 seconds
Chapter29DOM object|jQuery object

DOM objects and jQuery objects

05 minutes45 seconds

Convert DOM objects and jQuery objects to each other

06 minutes16 seconds
Chapter30jQuery basics

jQuery common API guide

00 minutes58 seconds

jQuery basic and hierarchical selectors

04 minutes03 seconds

jQuery implicit iteration

05 minutes17 seconds

jQuery filter selector

03 minutes54 seconds

jQuery filter method-select parent and child elements

05 minutes24 seconds

Sina drop down menu

05 minutes04 seconds

jQuery other filtering methods

07 minutes35 seconds

jQuery exclusive idea

03 minutes44 seconds

Taobao clothing boutique case

07 minutes12 seconds

jQuery chain programming

07 minutes05 seconds

jQuery modify style css method

06 minutes28 seconds

jQuery modify style operation class

05 minutes09 seconds

Tab bar switching case

07 minutes05 seconds

The difference between jQuery class operations and className

02 minutes47 seconds

jQuery show and hide effects

08 minutes07 seconds

jQuery sliding effect and event switching

08 minutes40 seconds

jQuery stop animation queue

03 minutes32 seconds

jQuery fade in and highlight case

07 minutes24 seconds

jQuery custom animation animate method

03 minutes34 seconds

Honor of Kings Accordion Case Layout Analysis

03 minutes31 seconds

King of Glory Accordion Case Production

08 minutes42 seconds
Chapter31shopping cart

jQuery attribute manipulation

10 minutes12 seconds

Shopping Cart Module-Select All (Part 1)

09 minutes54 seconds

Shopping Cart Module-Select All (Part 2)

06 minutes54 seconds

jQuery content text value

04 minutes15 seconds

Shopping cart module - increase or decrease the number of items

07 minutes34 seconds

Shopping Cart Module-Modify Product Subtotal (Part 1)

08 minutes52 seconds

Shopping cart module-modify product subtotal (medium)

06 minutes01 seconds

Shopping Cart Module-Modify Product Subtotal (Part 2)

03 minutes37 seconds

jQuery iterates through objects each method

08 minutes58 seconds

jQuery iterating through data

03 minutes37 seconds

Shopping cart module - calculate total count and total

09 minutes18 seconds

Create, add, delete elements

08 minutes01 seconds

Shopping Cart Module-Clean Shopping Cart

07 minutes00 seconds

Shopping cart module-add background color to selected items

04 minutes49 seconds

jQuery size method

04 minutes18 seconds

jQuery position methods

06 minutes02 seconds

jQuery is rolled to the head method

06 minutes38 seconds

Return to top with animation

03 minutes46 seconds

Elevator Navigation Case-Show Hide Elevator Navigation

04 minutes39 seconds

Elevator navigation case - click to scroll to the target location

08 minutes50 seconds

Elevator navigation case - click on the current li to add the current class

03 minutes41 seconds

Elevator navigation case - sliding page elevator navigation automatically adds the current class

05 minutes49 seconds

Elevator navigation case throttle valve (mutex lock)

06 minutes12 seconds
Chapter32jQuery events

Introduction to jQuery events

00 minutes37 seconds

Event processing on binds one or more events

06 minutes23 seconds

on implements event delegation and binds events to dynamic elements

06 minutes11 seconds

Weibo publishing case

10 minutes48 seconds

off unbinding event

05 minutes26 seconds

jQuery automatically triggers events

05 minutes44 seconds

jQuery event object

02 minutes54 seconds

Introduction to other methods of jQuery

00 minutes26 seconds

jQuery object copyextend(optional)

11 minutes42 seconds

jQuery multi-library coexistence

05 minutes40 seconds

Waterfall plug-in usage

09 minutes17 seconds

Image lazy loading technology

10 minutes35 seconds

Full screen scrolling plug-in usage (optional)

11 minutes04 seconds
Chapter33BootStrap component

bootstrap component

04 minutes57 seconds

bootstrapJS plugin

10 minutes27 seconds

Ali Baixiu

10 minutes47 seconds

Totolist layout functional requirements analysis

06 minutes45 seconds

todilist core ideas and local storage format

10 minutes16 seconds

todolist press enter to read local storage data

08 minutes23 seconds

todolist press enter to save the latest data to local storage

06 minutes29 seconds

todolist local storage data is rendered and loaded into the page

10 minutes35 seconds

todolist click the delete button to get the current index number

08 minutes19 seconds

todolist click the delete button to complete the deletion operation

04 minutes47 seconds

Click the checkbox to modify the done attribute of the corresponding data

08 minutes20 seconds

Todolist is in progress and has been completed

04 minutes59 seconds

todolist counts the number of ongoing and completed items

05 minutes37 seconds

Introduction to the function of recording video

01 minutes50 seconds

Point area layout style

10 minutes24 seconds

Map area layout style

06 minutes38 seconds

User area layout style

07 minutes20 seconds

Order area layout style

08 minutes40 seconds

Sales area layout style

11 minutes17 seconds

Channel and quarter layout styles

22 minutes20 seconds

Ranking area layout style-reference

32 minutes55 seconds

Introduction to data visualization projects

00 minutes54 seconds

What data visualization

05 minutes17 seconds

Data Visualization Project Overview

04 minutes20 seconds
Chapter34ECharts

Introduction to ECharts

04 minutes17 seconds

Basic use of ECharts

11 minutes19 seconds

Choose different chart types

05 minutes57 seconds

ECharts project configuration (Part 1)

10 minutes00 seconds

ECharts-grid configuration

08 minutes48 seconds

ECharts related configuration (middle)

10 minutes13 seconds

ECharts project configuration (Part 2)

11 minutes22 seconds

Discount chart generation and configuration item summary

04 minutes52 seconds

Data visualization project adaptation solution analysis

05 minutes10 seconds

Data visualization project adaptation plan

08 minutes44 seconds

Project preparation and following the auto-refresh browser plug-in

04 minutes44 seconds

Visualization project-body and viewport production

09 minutes14 seconds

Visualization project column container

03 minutes34 seconds

Border picture usage scenarios and cutting principles

08 minutes43 seconds

Border image usage syntax

09 minutes37 seconds

Public panel style production (Part 1)

08 minutes35 seconds

Public panel style production (Part 2)

09 minutes26 seconds

Call font icon by class name

05 minutes58 seconds

Data visualization project-overview area module production

12 minutes14 seconds

Data visualization project-monitoring area layout analysis

05 minutes50 seconds

Data visualization project-monitoring area tab bar switching analysis

11 minutes29 seconds

Data visualization project - seamless scrolling of monitoring area

11 minutes25 seconds

Point distribution point module-layout

05 minutes11 seconds

Point distribution point-introduction chart

08 minutes44 seconds

ECharts pie chart-tooltip parameter meaning

08 minutes31 seconds

ECharts pie chart-series parameter meaning

06 minutes27 seconds

Positioning distribution module-customized configuration (Part 1)

06 minutes10 seconds

Positioning distribution module-customized configuration (Part 2)

07 minutes27 seconds
  • CancelreplySending
  • Cancelpost a noteSending