Built with blockbuilder.org
forked from Vintharas's block: Simple example moving divs
| license: mit |
Built with blockbuilder.org
forked from Vintharas's block: Simple example moving divs
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script src="https://d3js.org/d3.v4.min.js"></script> | |
| <style> | |
| body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } | |
| </style> | |
| <svg></svg> | |
| </head> | |
| <body> | |
| <script> | |
| var svg = d3.select("svg"); | |
| var circle = svg.append('circle') | |
| .attr('cx', 50) | |
| .attr('cy', 50) | |
| .attr('r', 25) | |
| .attr('fill', 'blue') | |
| circle | |
| .transition().duration(1000) | |
| .attr('r', 50) | |
| .attr('cx', 70) | |
| .attr('cy', 70) | |
| .transition().duration(1000) | |
| .attr('r', 25) | |
| .attr('cx', 50) | |
| .attr('cy', 50) | |
| </script> | |
| </body> |