1. 程式人生 > >HTML+CSS 實現環形比例圖效果

HTML+CSS 實現環形比例圖效果

HMTL程式碼

<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>百分比</title>
<style type="text/css">
.yuan{ width:200px; height:200px; margin:0 auto; box-sizing:border-box; padding-top:20px; text-align:center; background-color:#f1f1f1; border-radius:50%; position:relative;}
.yuan_bl1 , .yuan_bl2 , .yuan_bl3 , .yuan_bl4{ width:100%; height:100%; border-radius:50%; position:absolute; left:0; top:0;}
.yuan_bl1 , .yuan_bl2{ background-color:#FF7F4C; -webkit-box-shadow:0 0 1px 1px #fff inset; box-shadow:0 0 1px 1px #fff inset;}
.yuan_bl3 , .yuan_bl4{ background-color:#f1f1f1;}
.yuan_bl1 , .yuan_bl3{ clip:rect(0 200px 100px 0);}
.yuan_bl2 , .yuan_bl4{ clip:rect(100px 200px 200px 0);}
.yuan_text{ width:160px; height:160px; line-height:160px; box-sizing:border-box; padding-left:10px; margin:0 auto; color:#FF7F4C; font-size:36px; font-family:"PingFangSC-Thin","sans-serif","STHeitiSC-Light","微軟雅黑","Microsoft YaHei"; background-color:#fff; border-radius:50%; position:relative;}
</style>
<script type="text/javascript" src="jquery2.1.js"></script>
</head>
<body>
<div class="yuan">
    <div class="yuan_bl1"></div>
    <div class="yuan_text">81°</div>
</div>
<script>
$(function(){
	//初始化
	var bl = parseInt($('.yuan_text').html());
	var rotatenum = bl;
	if(bl > 180){
		var blhtml = '';
		rotatenum = bl - 180;
		blhtml += '<div class="yuan_bl2">';
		blhtml += '<div class="yuan_bl4" style="-webkit-transform:rotate(' + rotatenum + 'deg);transform:rotate(' + rotatenum + 'deg);"></div>';
		blhtml += '</div>';
		//$('.yuan_bl1').remove($('.yuan_bl3'));
		$('.yuan_bl1').after(blhtml);
	}else{
		var blhtml = '';
		blhtml += '<div class="yuan_bl3" style="-webkit-transform:rotate(' + rotatenum + 'deg);transform:rotate(' + rotatenum + 'deg);"></div>';
		$('.yuan_bl1').append(blhtml);
	}
})
</script>
</body>
</html>