移動端rem的轉換(750設計稿)


js轉換文件

	/*
	說明:100px=1rem
	*/
	<script>
		+ function() {
			remLayout();

			function remLayout() {
				var w = document.documentElement.clientWidth;
				w = w > 768 ? 768 : w;
				w = w <= 320 ? 320 : w;
				document.documentElement.style.fontSize = w / 7.5 + 'px';
			}
			window.addEventListener('resize', function() {
				remLayout();
			}, false);
		}();
	</script>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM