-
-
Save BananaAcid/3908088e0d13bfb25a5e2f233f9aefb1 to your computer and use it in GitHub Desktop.
Responds to window resize events. Max font size taken from initial font size (specify with CSS). [no modifications, just forked to extend the example.]
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
(function($) { | |
function getTextWidth($element) { | |
var tester = $("<div/>").text($element.text()) | |
.css({ "position": "absolute", "float": "left", "white-space": "nowrap", "visibility": "hidden", "font": $element.css("font"), "text-transform": $element.css("text-transform"), "letter-spacing": $element.css("letter-spacing") }) | |
.appendTo($element.parent()), | |
width = tester.innerWidth(); | |
tester.remove(); | |
return width; | |
} | |
function AutoShrinker($element) { | |
this.$element = $element; | |
this.$parent = $element.parent(); | |
this.initialFontSize = parseFloat($element.css("fontSize")); | |
this.currentFontSize = this.initialFontSize; | |
this.leftMarginRatio = parseFloat($element.css("marginLeft")) / this.initialFontSize; | |
this.resize = function() { | |
var maxWidth = this.$parent.width(), | |
newSize = this.currentFontSize * (maxWidth / getTextWidth(this.$element)); | |
newSize = newSize > this.initialFontSize ? this.initialFontSize : newSize; | |
this.$element.css({ | |
"fontSize": newSize, | |
"marginLeft": newSize * this.leftMarginRatio | |
}); | |
this.currentFontSize = newSize; | |
}; | |
} | |
$.fn.autoshrink = function() { | |
return this.each(function() { | |
var shrinker, $this = $(this); | |
$this.data("autoshrinker", shrinker = new AutoShrinker($this)); | |
shrinker.resize(); | |
$(window).on("resize", function() { | |
shrinker.resize(); | |
}); | |
}); | |
}; | |
})(jQuery); |
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
<script> | |
$('h1').get(0).style = ''; // reset all styles to reapply autoshrink() | |
$('h1').autoshrink(); | |
</script> | |
<div> | |
<h1>Shrink Me</h1> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment