使用js写的一个简易的投票
使用js写的一个简易的投票
发布时间:2016-12-30 来源:查字典编辑
摘要:大家直接自己看吧,请多多指教,这个是几个月前写的,现在全部整理一下。复制代码代码如下:body,div,a,span{margin:0;pa...

大家直接自己看吧,请多多指教,这个是几个月前写的,现在全部整理一下。

复制代码 代码如下:

<!doctype html>

<html>

<head>

<meta charset="utf-8" >

<title></title>

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>

<style type="text/css">

body,div,a,span{margin:0;padding:0;}

.g-pt-10{ padding-top:10px; }

.g-ta-c{ text-align:center; }

.g-fz-16{ font-size:16px; }

.g-d-b{ display:block; }

.g-f-l{ float:left; }

.g-c-w{ color:#fff; }

.g-fz-18{ font-size:18px; }

.g-d-ib{ display:inline-block; }

.g-cf:after { content:""; clear:both; display:table; }

.g-cf { zoom:1; }

a:hover{ text-decoration:none; color:#ff0000; }

.box{ width:705px; height:242px; margin:50px auto; background:#f5f9fe; border:1px solid #6888a1; }

div.mid{ width:330px; margin:20px auto; }

a.support{ width:124px; height:73px; background:#008DCA url("support.png"); margin-right:80px; }

a.oppose{ width:124px; height:73px; background:#F78106 url("oppose.png"); }

.g-mt-45{ margin-top:45px; }

span.line{ width:380px; height:17px; margin:0 auto; background:#008DCA; }

span.line2{ width:80px; height:17px; background:#F78106; }

</style>

</head>

<body>

<div>

<h3>如果微信将会进行收费,你将会怎么办?</h3>

<div>

<a>

<p id="supamount">0</p>

</a>

<a>

<p id="oppamount">0</p>

</a>

</div>

<div>

<p id="suppercent">0</p>%

<span><span id="supline"></span></span>

<p id="opppercent">0</p>%

</div>

</div>

<script type="text/javascript">

var sup=parseInt($('#supamount').text());

var opp=parseInt($('#oppamount').text());

function support(){

sup+=1;

$('#supamount').text(sup.toString());

$('#suppercent').text(((sup/(sup+opp))*100).toFixed(0).toString());

$('#opppercent').text((100-(sup/(sup+opp))*100).toFixed(0).toString());

$('#supline').attr("style","width:"+380*(sup/(sup+opp))+"px");

}

function oppose(){

opp+=1;

$('#oppamount').text(opp.toString());

$('#suppercent').text(((sup/(sup+opp))*100).toFixed(0).toString());

$('#opppercent').text((100-(sup/(sup+opp))*100).toFixed(0).toString());

$('#supline').attr("style","width:"+380*(sup/(sup+opp))+"px");

}

</script>

</body>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类