84669 人学习
152542 人学习
20005 人学习
5487 人学习
7821 人学习
359900 人学习
3350 人学习
180660 人学习
48569 人学习
18603 人学习
40936 人学习
1549 人学习
1183 人学习
32909 人学习
我有一些文本,我想在将鼠标悬停在按钮上时将其大小调整为浏览器的 100%。如何使该文本适合浏览器/容器?
我知道使用 font size ,您可以执行类似 font-size:100vw 的操作,但是 font-size 的动画很不稳定,所以我无法使用此方法。
font size
font-size:100vw
http://jsfiddle.net/0n15mfyL/
对于那些想知道抖动的人,当字体缩小时会很明显:http://jsfiddle.net/rbk48upd/
我正在考虑 requestAnimationFrame()
const hoverMe = document.querySelector('#hover-me') , animTextSizing = document.querySelector('#anim-text-sizing') , txtSizeStart = parseInt(window.getComputedStyle(animTextSizing).getPropertyValue('font-size')) ; let sizeLimit = 0, currentTxtSize = txtSizeStart ; hoverMe.onmouseover =_=> { sizeLimit = document.body.clientWidth; animGrow(); } hoverMe.onmouseout =_=> { sizeLimit = txtSizeStart; currentTxtSize++ animReduce(); } function animGrow() { animTextSizing.style['font-size'] = `${++currentTxtSize}px`; if ( animTextSizing.clientWidth < sizeLimit) requestAnimationFrame(animGrow); } function animReduce() { animTextSizing.style['font-size'] = `${--currentTxtSize}px`; if ( currentTxtSize > sizeLimit) requestAnimationFrame(animReduce); }
* { margin : 0; padding : 0; } #anim-text-sizing { font-size : 30px; width : fit-content; white-space : nowrap; background : #aabfe5; } #hover-me { position : fixed; background : red; color : white; top : 50%; left : 50%; padding : .5rem; cursor : zoom-in; }
<div id="hover-me">Hover me</div> <div id="anim-text-sizing"> Welcome to this Page </div>
我正在考虑 requestAnimationFrame()