g6/packages/site/examples/scatter/changePosition/demo/animateOrder.js
Aaron 0b89bf7f86
refactor: adjust site demos (#5217)
* refactor: remove unused demos

* refactor: adjust onresize handle

* refactor: update 3d data resource

* docs: update demos imports

* refactor: handle resize uniformly and import module name

* fix: fix issue that demo cannot get container

* refactor: remove unused demos of algorithm and case
2023-12-04 14:42:33 +08:00

135 lines
2.7 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Graph, stdLib } from '@antv/g6';
const data = {
nodes: [
{
id: 'Click Me',
data: {
x: 200,
y: 100,
cluster: '1',
},
},
{
id: 'b',
data: {
x: 100,
y: 200,
cluster: '2',
},
},
{
id: 'c',
data: {
x: 300,
y: 200,
cluster: '3',
},
},
],
edges: [
{
id: 'a2b',
source: 'Click Me',
target: 'b',
},
{
id: 'a2c',
source: 'Click Me',
target: 'c',
},
],
};
const container = document.getElementById('container');
const width = container.scrollWidth;
const height = container.scrollHeight || 500;
let graph = new Graph({
container: 'container',
width,
height,
modes: { default: [] },
plugins: [
{
// lod-controller will be automatically assigned to graph with `disableLod: false` to graph if it is not configured as following
type: 'lod-controller',
disableLod: true,
},
],
layout: {
type: 'grid',
},
theme: {
type: 'spec',
specification: {
node: {
dataTypeField: 'cluster',
},
},
},
node: {
labelShape: {
text: {
fields: ['id'],
formatter: (model) => model.id,
},
},
labelBackgroundShape: {},
animates: {
update: [
{
fields: ['r'],
shapeId: 'keyShape',
duration: 1000,
order: 0,
},
{
fields: ['fill'],
shapeId: 'keyShape',
duration: 1000,
order: 2,
},
{
fields: ['lineWidth'],
shapeId: 'keyShape',
duration: 1000,
order: 1,
},
{
fields: ['fill', 'fontWeight'],
shapeId: 'labelShape',
duration: 1000,
order: 3,
},
],
},
},
data,
});
graph.on('node:click', (e) => {
graph.updateData('node', {
id: e.itemId,
data: {
cluster: Math.random(),
keyShape: {
r: 32 + Math.random() * 10 - 5,
lineWidth: 6 + Math.random() * 6 - 3,
stroke: '#000',
},
labelShape: {
fill: stdLib.themes.light.node.palette[Math.floor(Math.random() * 10)],
fontWeight: 700,
},
},
});
});
const btnContainer = document.createElement('div');
btnContainer.style.position = 'absolute';
container.appendChild(btnContainer);
const tip = document.createElement('span');
tip.innerHTML = `The Animations are Ordered as: <br/> 1⃣ keyShape's r, 2⃣ keyShape's fill, 3⃣ keyShape's lineWidth, and 4⃣ labelShape's fill and fontWeight`;
btnContainer.appendChild(tip);
window.graph = graph;