使用JavaScript 的CSS 視口單位
CSS3 引入了視口百分比長度單位vh 和vw,這對於響應式佈局非常有價值。然而,問題是這些單元是否存在跨瀏覽器的 JavaScript 替代方案。
JavaScript/jQuery 替代方案
當然!可以利用 jQuery 為視口單元提供替代方案。這是一個基於jQuery 的解決方案:
<code class="javascript">/* jQuery plugin to convert viewport units to pixels */ ;(function( $, window ){ var $win = $(window) , _css = $.fn.css; function viewportToPixel( val ) { var percent = val.match(/[\d.]+/)[0] / 100 , unit = val.match(/[vwh]+/)[0]; return (unit == 'vh' ? $win.height() : $win.width()) * percent +'px'; } function parseProps( props ) { var p, prop; for ( p in props ) { prop = props[ p ]; if ( /[vwh]$/.test( prop ) ) { props[ p ] = viewportToPixel( prop ); } } return props; } $.fn.css = function( props ) { var self = this , originalArguments = arguments , update = function() { if ( typeof props === 'string' || props instanceof String ) { if (originalArguments.length > 1) { var argumentsObject = {}; argumentsObject[originalArguments[0]] = originalArguments[1]; return _css.call(self, parseProps($.extend({}, argumentsObject))); } else { return _css.call( self, props ); } } else { return _css.call( self, parseProps( $.extend( {}, props ) ) ); } }; $win.resize( update ).resize(); return update(); }; }( jQuery, window )); **Usage:** </code>
$('div').css({
height: '50vh',
width: '50vw',
marginTop : ' 25vh',
marginLeft: '25vw',
fontSize: '10vw'
});
This solution seamlessly integrates the viewport unit conversion into jQuery's CSS method, allowing for easy resizing of elements based on viewport dimensions. **Safety Considerations**
以上是是否有跨瀏覽器的 JavaScript 取代 CSS 視窗單元(vh 和 vw)?的詳細內容。更多資訊請關注PHP中文網其他相關文章!