Last active
May 27, 2022 00:03
-
-
Save brainwipe/7689151 to your computer and use it in GitHub Desktop.
Using Snap.svg to create a box with text in it. The bounding "container" box expands to fit the width of the text.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script src="//cdn.jsdelivr.net/snap.svg/0.1.0/snap.svg-min.js"></script> | |
<script> | |
var s = Snap("#svg"); | |
var block = s.rect(50, 50, 100, 100, 20, 20); | |
block.attr({ | |
fill: "rgb(236, 240, 241)", | |
stroke: "#1f2c39", | |
strokeWidth: 3 | |
}); | |
var text = s.text(70, 135, "Hello!"); | |
text.attr({ | |
'font-size':100 | |
}); | |
block.attr({ | |
width: (text.node.clientWidth + 50) | |
}); | |
</script> | |
</head> | |
<body> | |
<svg id="svg" version="1.1" xmlns="http://www.w3.org/2000/svg"></svg> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
spent the whole day for
var text = s.text(70, 135, "Hello!");
It was well worth it, I learned a whole bunch!
Thanks @brainwipe !!!