Go Back   CodingForums.com > :: Client side development > JavaScript programming > JavaScript frameworks

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-25-2011, 06:59 PM   PM User | #1
conware
Regular Coder

 
Join Date: Mar 2010
Posts: 195
Thanks: 77
Thanked 5 Times in 5 Posts
conware is an unknown quantity at this point
animate poll results.

Hi guys,

I have poll on my website and I want to animate the resultbar so when someone visites the page the resultbars will slide in.

Hope someone can help me with this.
Here is my code so far:

Html
Code:
<div id="poll">
<form method="post" action="">

<fieldset>

<div class="txt_center"><b>Poll Title</b></div>

<div class="option odd">

		<div class="text">Question 01</div>
		<div class="percent right">
			0% [0] 
		</div>
		<div class="resultbar">
			<div class="pollbar" style="width:0%;"></div>
		</div>

</div>

<div class="option even">

		<div class="text">Question 02</div>
		<div class="percent right">
			50% [1] <b title="You voted for this option">x</b>
		</div>
		<div class="resultbar">
			<div class="pollbar" style="width:50%;"></div>
		</div>

</div>

<div class="option odd">

		<div class="text">Question 03</div>
		<div class="percent right">
			50% [1] 
		</div>
		<div class="resultbar">
			<div class="pollbar" style="width:50%;"></div>
		</div>

</div>
<div class="txt_center"><b>Total Votes : 2</b></div>
</fieldset>
</form>
</div>

Jquery:
Code:
$(document).ready(function() {
  $('#poll .resultbar').hide();
  $('#poll .resultbar').animate({width: 'toggle'}, 2000);
});
Im trying to do something like this:
http://demos.net.tutsplus.com/test_poll/

However im not really sure how I can use it with my code.
conware is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 02:16 PM.


Advertisement
Log in to turn off these ads.