How to create Vertical progress bar in Bootstrap with

ci_lover

I have created horizontal progress bars, but how to create vertical progress bar? Here's my code, result is vertical progress bar, but they don't look like Bootstrap progress bars. I want to show percent, to be vertical and their height of filling to be the result of query. They look like this: http://prntscr.com/6l39cg It doesn't look good. I want to look like this: progress-bar And how to change height to be not 100%, but from 1 to 5. I've tried aria-valuemax="5" but it doesn't work. This is my code:

<div id="tab2" class="mtab_content">
	            <p>
				<?php foreach ($result_question1 as $row) {
	    	 		echo "$row->question";
					$percent=round("$row->answer",2); 
	    	 		
	    	 	?> 
	            	<div class="vertical-progressbar">
	    				<div class="progress-bar progress-bar-success" role="progressbar" 
	    				style="width: 
	    				<?php echo round($percent,2); ?>%;">
	     			</div>
						<?php echo round($percent,2); } ?> %
				</div>
  </div>

My CSS is:

.vertical-progressbar{
  width: 300px;
  height: 40%;
  float: left;
  margin-right: 20px;
  
}

I found that solution, but height doesn't change in dependence of result of query:

.progress-vertical {
    width: 20px;
    height: 200px !important;
    position: relative;
}
.progress-vertical .bar {
    width: 100% !important;
    position: absolute;
    bottom: 0;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}
<?php foreach ($result_question1 as $row) {
	    	 		//echo "$row->question";
					$percent=round("$row->answer",2); 
	    	 	echo "<br/>";
					?>
	     			<div class="progress progress-vertical progress-bar-success">
    			<div class="bar" style="height: <?php echo round($percent,2); ?>%;"></div>
					
						<?php echo round($percent,2);  ?> %
				</div>

ste-fu

How about using a CSS transform to rotate it 90 degrees.

.vertical-progressbar{
    -ms-transform: rotate(90deg); 
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

Linux + how to create simple Progress Bar in bash

분류에서Dev

Display Upload Progress in Modal with Bootstrap Progress Bar

분류에서Dev

Bootstrap : how to disable vertical scrollbar?

분류에서Dev

How can I Display a Progress Bar in mplayer?

분류에서Dev

How to make vertical bar | work in grep?

분류에서Dev

C# How to loop through Progress Bar perfectly

분류에서Dev

How can I put progress bar component on top of the layout?

분류에서Dev

while progress bar is running how to disable other controls of the page in WPF

분류에서Dev

how to move vertical scroll bar on clicking an element to display the content correctly?

분류에서Dev

How to use “progress-bar.sh” to display the progress of operations that occur on remote servers

분류에서Dev

Splash screen with progress bar

분류에서Dev

progress bar not working for me

분류에서Dev

Progress bar not updating on Android

분류에서Dev

Refresh progress bar

분류에서Dev

vertical bar chart with validation

분류에서Dev

My progress with Bootstrap 3

분류에서Dev

How to create a bar chart/histogram with bar per discrete value?

분류에서Dev

How to create/drop a table in Progress OpenEdge using ABL?

분류에서Dev

How to create/drop a table in Progress OpenEdge using ABL?

분류에서Dev

how to create links on toggle slide bar?

분류에서Dev

Put border in empty progress bar

분류에서Dev

Using an indeterminate progress bar with a listview

분류에서Dev

Progress-bar for Ruby Upload

분류에서Dev

Progress bar at every GridView element

분류에서Dev

Create Vertical Menu

분류에서Dev

How to update the progress bar value in a tkinter window from a Flask application which is in another thread?

분류에서Dev

How should I add a stationary progress bar to a C++ program that produces terminal output (in Linux)?

분류에서Dev

youtube-dl file download progress with zenity progress bar

분류에서Dev

How to create link make cakephp with twitter bootstrap

Related 관련 기사

  1. 1

    Linux + how to create simple Progress Bar in bash

  2. 2

    Display Upload Progress in Modal with Bootstrap Progress Bar

  3. 3

    Bootstrap : how to disable vertical scrollbar?

  4. 4

    How can I Display a Progress Bar in mplayer?

  5. 5

    How to make vertical bar | work in grep?

  6. 6

    C# How to loop through Progress Bar perfectly

  7. 7

    How can I put progress bar component on top of the layout?

  8. 8

    while progress bar is running how to disable other controls of the page in WPF

  9. 9

    how to move vertical scroll bar on clicking an element to display the content correctly?

  10. 10

    How to use “progress-bar.sh” to display the progress of operations that occur on remote servers

  11. 11

    Splash screen with progress bar

  12. 12

    progress bar not working for me

  13. 13

    Progress bar not updating on Android

  14. 14

    Refresh progress bar

  15. 15

    vertical bar chart with validation

  16. 16

    My progress with Bootstrap 3

  17. 17

    How to create a bar chart/histogram with bar per discrete value?

  18. 18

    How to create/drop a table in Progress OpenEdge using ABL?

  19. 19

    How to create/drop a table in Progress OpenEdge using ABL?

  20. 20

    how to create links on toggle slide bar?

  21. 21

    Put border in empty progress bar

  22. 22

    Using an indeterminate progress bar with a listview

  23. 23

    Progress-bar for Ruby Upload

  24. 24

    Progress bar at every GridView element

  25. 25

    Create Vertical Menu

  26. 26

    How to update the progress bar value in a tkinter window from a Flask application which is in another thread?

  27. 27

    How should I add a stationary progress bar to a C++ program that produces terminal output (in Linux)?

  28. 28

    youtube-dl file download progress with zenity progress bar

  29. 29

    How to create link make cakephp with twitter bootstrap

뜨겁다태그

보관