This file contains 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
createSvgRectWithBorderRadius('.wrapper', '#09f', 0, 0, 400, 300, 40, 70, 20, 110); | |
/** | |
* Create a rounded rectangle (different radius for each corner) | |
* @author aPinix <https://twitter.com/aPinix> | |
* @version 1.0 | |
* @see {@link https://codepen.io/aPinix/pen/dyRvjQq} | |
* @link https://codepen.io/aPinix/pen/dyRvjQq | |
* @param {string} elemSelector The selector for the element to append the svg | |
* @param {string} color The color of the rectangle |
This file contains 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
createSvgBracketWithBorderRadius('.wrapper', '#09f', 0, 0, 30, 100, 10, 8, 'left'); | |
createSvgBracketWithBorderRadius('.wrapper', '#09f', 0, 0, 30, 100, 10, 8, 'right'); | |
/** | |
* Create svg rounded brackets | |
* @author aPinix <https://twitter.com/aPinix> | |
* @version 1.0 | |
* @see {@link https://codepen.io/aPinix/pen/dyRvjQq} | |
* @link https://codepen.io/aPinix/pen/dyRvjQq | |
* @param {string} elemSelector The selector for the element to append the svg |