You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by sh...@apache.org on 2021/07/17 06:55:14 UTC

[echarts-examples] branch dev updated: add more animation on case

This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/echarts-examples.git


The following commit(s) were added to refs/heads/dev by this push:
     new 4799442  add more animation on case
4799442 is described below

commit 4799442d0551d26a5a3e6d0daaff851543f0c9ce
Author: pissang <bm...@gmail.com>
AuthorDate: Sat Jul 17 14:52:57 2021 +0800

    add more animation on case
---
 .gitignore                                     | 3 ++-
 public/data-gl/animating-contour-on-globe.js   | 2 ++
 public/data-gl/flowGL-noise.js                 | 2 ++
 public/data-gl/global-wind-visualization-2.js  | 3 +++
 public/data-gl/global-wind-visualization.js    | 3 +++
 public/data-gl/globe-echarts-gl-hello-world.js | 2 ++
 public/data-gl/globe-layers.js                 | 2 ++
 public/data-gl/graphgl-gpu-layout.js           | 3 ++-
 public/data-gl/lines3d-flights-gl.js           | 2 ++
 public/data-gl/lines3d-flights.js              | 2 ++
 10 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 8b72324..4c2dd93 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,4 +15,5 @@ public/vendors/echarts/map/raw
 /public/data/option
 /public/data-gl/option
 
-tmp
\ No newline at end of file
+tmp
+.webm
\ No newline at end of file
diff --git a/public/data-gl/animating-contour-on-globe.js b/public/data-gl/animating-contour-on-globe.js
index c6cbfed..aa2202f 100644
--- a/public/data-gl/animating-contour-on-globe.js
+++ b/public/data-gl/animating-contour-on-globe.js
@@ -2,6 +2,8 @@
 title: Animating Contour on Globe
 category: globe
 titleCN: Animating Contour on Globe
+videoStart: 2000
+videoEnd: 6000
 */
 
 
diff --git a/public/data-gl/flowGL-noise.js b/public/data-gl/flowGL-noise.js
index 5c9cc68..2d57e64 100644
--- a/public/data-gl/flowGL-noise.js
+++ b/public/data-gl/flowGL-noise.js
@@ -3,6 +3,8 @@ title: Flow on the cartesian
 category: flowGL
 titleCN: 直角坐标系上的向量场
 theme: dark
+videoStart: 2000
+videoEnd: 10000
 */
 
 $.getScript('https://cdn.jsdelivr.net/npm/simplex-noise@2.4.0/simplex-noise.js').done(function () {
diff --git a/public/data-gl/global-wind-visualization-2.js b/public/data-gl/global-wind-visualization-2.js
index 13c23a3..89e2e3a 100644
--- a/public/data-gl/global-wind-visualization-2.js
+++ b/public/data-gl/global-wind-visualization-2.js
@@ -3,6 +3,8 @@ title: Global Wind Visualization 2
 category: flowGL
 tags: bmap
 titleCN: Global Wind Visualization 2
+videoStart: 2000
+videoEnd: 10000
 */
 
 $.getJSON(ROOT_PATH + '/data-gl/asset/data/gfs.json', function(windData) {
@@ -34,6 +36,7 @@ $.getJSON(ROOT_PATH + '/data-gl/asset/data/gfs.json', function(windData) {
             }
         }
         myChart.setOption({
+            backgroundColor: '#001122',
             visualMap: {
                 left: 'right',
                 min: minMag,
diff --git a/public/data-gl/global-wind-visualization.js b/public/data-gl/global-wind-visualization.js
index ef7b71e..9494961 100644
--- a/public/data-gl/global-wind-visualization.js
+++ b/public/data-gl/global-wind-visualization.js
@@ -3,6 +3,8 @@ title: Global wind visualization
 category: flowGL
 tags: bmap
 titleCN: Global wind visualization
+videoStart: 2000
+videoEnd: 10000
 */
 
 $.getJSON(ROOT_PATH + '/data-gl/asset/data/winds.json', function (windData) {
@@ -32,6 +34,7 @@ $.getJSON(ROOT_PATH + '/data-gl/asset/data/winds.json', function (windData) {
         }
     }
     myChart.setOption(option = {
+        backgroundColor: '#001122',
         visualMap: {
             left: 'right',
             min: minMag,
diff --git a/public/data-gl/globe-echarts-gl-hello-world.js b/public/data-gl/globe-echarts-gl-hello-world.js
index 7d42cfa..6ef4cb5 100644
--- a/public/data-gl/globe-echarts-gl-hello-world.js
+++ b/public/data-gl/globe-echarts-gl-hello-world.js
@@ -3,6 +3,8 @@ title: ECharts-GL Hello World
 category: globe
 titleCN: ECharts-GL Hello World
 scripts: 'https://cdn.jsdelivr.net/gh/ecomfe/echarts-gl/dist/echarts-gl.min.js'
+videoStart: 2000
+videoEnd: 6000
 */
 
 option = {
diff --git a/public/data-gl/globe-layers.js b/public/data-gl/globe-layers.js
index 6ec140d..ef3d0e5 100644
--- a/public/data-gl/globe-layers.js
+++ b/public/data-gl/globe-layers.js
@@ -2,6 +2,8 @@
 title: Globe Layers
 category: globe
 titleCN: Globe Layers
+videoStart: 2000
+videoEnd: 6000
 */
 
 option = {
diff --git a/public/data-gl/graphgl-gpu-layout.js b/public/data-gl/graphgl-gpu-layout.js
index fdb5390..e27ebbf 100644
--- a/public/data-gl/graphgl-gpu-layout.js
+++ b/public/data-gl/graphgl-gpu-layout.js
@@ -3,7 +3,8 @@ title: GraphGL GPU Layout
 category: graphGL
 theme: dark
 titleCN: GraphGL GPU Layout
-shotDelay: 5000
+videoStart: 0
+videoEnd: 10000
 shotWidth: 1280
 */
 
diff --git a/public/data-gl/lines3d-flights-gl.js b/public/data-gl/lines3d-flights-gl.js
index f9a419f..95644fb 100644
--- a/public/data-gl/lines3d-flights-gl.js
+++ b/public/data-gl/lines3d-flights-gl.js
@@ -2,6 +2,8 @@
 title: Flights GL
 category: lines3D
 titleCN: Flights GL
+videoStart: 2000
+videoEnd: 8000
 */
 
 var uploadedDataURL = ROOT_PATH + "/data-gl/asset/data/flights.json";
diff --git a/public/data-gl/lines3d-flights.js b/public/data-gl/lines3d-flights.js
index e6eb33f..65e855a 100644
--- a/public/data-gl/lines3d-flights.js
+++ b/public/data-gl/lines3d-flights.js
@@ -2,6 +2,8 @@
 title: Flights
 category: lines3D
 titleCN: Flights
+videoStart: 2000
+videoEnd: 8000
 */
 
 

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org