Trying to implement this particular design on a responsive website. Wondering if there's a way to establish an inverse resizing technique using jQuery / Javascript so that as the viewport shrinks, the text size increases.
Attempted to use jQuery to adjust image size but currently can only resize manually at different breakpoints.
Proposed solution:
var viewportWidth = $(window).width();
if (viewportWidth <= 768) {
$("#curlybrace").css("width", "80px");
}
Is it possible to create a dynamic scaling image?