使用line-height來垂直居中在安卓設備並不居中,利用ji調整


先判斷智能機瀏覽器的版本信息:方法有兩種,但是第一種兼容性更好,但是使用了device插件

第一種:

if (device.android())
{    }

第二種:

var ua = navigator.userAgent.toLowerCase();//獲取瀏覽器的userAgent,並轉化為小寫——注:userAgent是用戶可以修改的

 

var isAndroid = ua.indexOf('android') != -1;//判斷是否是安卓手機,是則是true

if (isAndroid) {    }

/*

 


* 智能機瀏覽器版本信息:
*
*/
document.write("<style>");
if (device.android())
{
document.write(".badge{padding-top:3px}");
document.write(".btn .ct{line-height:22px}");
document.write(".btn.btn-20 .ct{padding-top:1px;}");
document.write(".btn.btn-lg .ct{line-height:20px}");
document.write(".btn.btn-xl .ct{line-height:38px}");
document.write(".btn.btn-lg .badge{margin-top:-1px}");
document.write(".btn.btn-xl .badge{margin-top:7px}");
}
//document.write(".badge{padding-top:2px}");
//document.write(".btn.btn-20 .ct{padding-top:1px;}");
//document.write(".btn.btn-lg .ct{padding-top:1px;}");
//document.write(".btn.btn-xl .ct{line-height:38px}");



document.write("</style>");


免責聲明!

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



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