Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
d3-moveto works with D3 selections to let you move SVG elements to the front or back of their parent SVG.
d3-moveto
works with D3 selections to let you move SVG elements to the front or back of their parent SVG.
In interactive data visualizations, it is often necessary to bring elements to the front or back. But it is not easy to do this with SVG.
Unlike HTML elements, SVG elements have no z-index
attribute, so it is impossible to make a younger sibling appear on top of an older one. Therefore, in SVG, elements which are appended to the DOM first will always appear on top of elements appended later.
If you use NPM, npm install d3-moveto
. Otherwise, download the latest release. You can also load directly from unpkg. You may use the entire D3.js library or, at a minimum, d3-selection.
<svg>
<rect class="rect rect-1" x="0" y="0" height="10" width="10" fill="blue"></rect>
<rect class="rect rect-2" x="10" y="0" height="10" width="10" fill="yellow"></rect>
<rect class="rect rect-3" x="10" y="10" height="10" width="10" fill="green"></rect>
<rect class="rect rect-4" x="0" y="10" height="10" width="10" fill="purple"></rect>
<rect class="front" x="0" y="0" height="20" width="20" fill="red"></rect>
</svg>
<script src="https://d3js.org/d3-selection.v1.min.js"></script>
<script src="https://unpkg.com/d3-moveto"></script>
<script>
var curr = 1;
setInterval(function(){
d3.selectAll(".rect").moveToBack();
d3.select(".rect-" + curr).moveToFront();
if (curr == 4) {
curr = 1;
} else {
curr++;
}
}, 1000);
</script>
# selection.moveToBack()
Moves a selected SVG element to the back of the SVG.
# selection.moveToFront()
Moves a selected SVG element to the front of the SVG.
FAQs
d3-moveto works with D3 selections to let you move SVG elements to the front or back of their parent SVG.
The npm package d3-moveto receives a total of 10 weekly downloads. As such, d3-moveto popularity was classified as not popular.
We found that d3-moveto demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.