ถามเกี่ยวกับ เเถบความคืบหน้า 0-100% ครับ
ถาม-ตอบ แนะนำไอเดียว โค้ดตัวอย่าง แนวทาง วิธีแก้ปัญหา ถามเกี่ยวกับ เเถบความคืบหน้า 0-100% ครับ
ถามเกี่ยวกับ เเถบความคืบหน้า 0-100% ครับ
ตรงเเถบ % ถ้าไม่ถึง 50% ให้เป็นสีเเดง เราจะใส่โค้ด background ยังไงครับ
อีกอย่างครับถ้าถึง 100% ผมอยากให้มี effect อะไรสักอย่างประมาณว่าถ้า100%ให้มันขยับได้ พอมีคำเเนะนำไหมครับ

อีกอย่างครับถ้าถึง 100% ผมอยากให้มี effect อะไรสักอย่างประมาณว่าถ้า100%ให้มันขยับได้ พอมีคำเเนะนำไหมครับ
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | <!DOCTYPE html> <html lang= "en" > <head> <title>Bootstrap Example</title> <meta charset= "utf-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1" > <link rel= "stylesheet" href= "https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" > </head> <style type= "text/css" > .center { display: block; margin-left: auto; margin-right: auto; width: 50%; } p { text-align: center; margin-top: 0; margin-bottom: -1rem; } </style> <body> <?php $test =100; $test1 =40; ?> <div class = "container" > <div class = "row" > <div class = "card" style= "width:150px;margin-top: 2%" > <img class = "card-img-top" src= "img/02.jpg" alt= "Card image" style= "width:100%" > <p>sad</p> <div class = "card-body" > <div class = "progress-bar" style= "width:<?php echo $test.'%' ?>" ><?php echo $test . '%' ?></div> </div> </div> <br> <div style= "width: 2%; " ></div> <div class = "card" style= "width:150px;margin-top: 2%" > <img class = "card-img-top" src= "img/02.jpg" alt= "Card image" style= "width:100%" > <p>sad</p> <div class = "card-body" > <div class = "progress-bar" style= "width:<?php echo $test1.'%' ?>" ><?php echo $test1 . '%' ?></div> </div> </div> <br> <div style= "width: 2%; " ></div> </div> </div> </body> </html> |

คำแนะนำ และการใช้งาน
สมาชิก กรุณา ล็อกอินเข้าระบบ เพื่อตั้งคำถามใหม่ หรือ ตอบคำถาม สมาชิกใหม่ สมัครสมาชิกได้ที่ สมัครสมาชิก
- ถาม-ตอบ กรุณา ล็อกอินเข้าระบบ
ความคิดเห็นที่
1
ผมตั้งเงื่อนไขเเบบนี้ถูกไหมครับ ถ้าน้องกว่า50ให้เป็นสีเเดง
1 2 3 4 5 | <div class = "card-body" > <div class = "progress-bar" style= " <?php if ($row[" id"]<=50){ ?>background-color: #ff0000;<?php} ?> width:<?php echo $row [ "id" ]. '%' ; ?>"> <?php echo $row [ "id" ]. '%' ; ?></div> </div> |

ความคิดเห็นที่
2
ดูตัวอย่างนี้เป็นแวทาง
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | <!doctype html> <html lang= "en" > <head> <meta charset= "UTF-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1" > <title>Document</title> </head> <body> <style type= "text/css" > .my-bg-red{ background-color:red !important; } .my-bg-blue{ background-color:#007bff !important; } .shake-horizontal { -webkit-animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both; animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both; } /* ---------------------------------------------- * Generated by Animista on 2020-3-29 21:9:20 * Licensed under FreeBSD License. * See http://animista.net/license for more info. * w: http://animista.net, t: @cssanimista * ---------------------------------------------- */ /** * ---------------------------------------- * animation shake-horizontal อยากได้ effect ไหนเลือกได้จากเว็บ http://animista.net ได้เลย * ---------------------------------------- */ @-webkit-keyframes shake-horizontal { 0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); } 10%, 30%, 50%, 70% { -webkit-transform: translateX(-10px); transform: translateX(-10px); } 20%, 40%, 60% { -webkit-transform: translateX(10px); transform: translateX(10px); } 80% { -webkit-transform: translateX(8px); transform: translateX(8px); } 90% { -webkit-transform: translateX(-8px); transform: translateX(-8px); } } @keyframes shake-horizontal { 0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); } 10%, 30%, 50%, 70% { -webkit-transform: translateX(-10px); transform: translateX(-10px); } 20%, 40%, 60% { -webkit-transform: translateX(10px); transform: translateX(10px); } 80% { -webkit-transform: translateX(8px); transform: translateX(8px); } 90% { -webkit-transform: translateX(-8px); transform: translateX(-8px); } } </style> <div class = "simple-wrap" > <div class = "card-body" > <div class = "progress-bar" data-percent= "100" ></div> </div> </div> <div class = "simple-wrap" > <div class = "card-body" > <div class = "progress-bar" data-percent= "50" ></div> </div> </div> <script type= "text/javascript" > $( function (){ $( ".simple-wrap .progress-bar" ).each( function (key, ele){ var dataPercent = $(ele).data( "percent" ); var cssClass = (dataPercent <= 50)? "my-bg-red" : "my-bg-blue" ; $(ele).text(dataPercent+ "%" ) // กำหนดตัวเลข .addClass(cssClass) // กำหนด class สีตามต้องการ .css({ width: '0px' // กำหนดขนาดเริ่มต้น }).animate({ width:dataPercent+ "%" // กำหนดการเปลี่ยนแปลงของ animation },1000, function (){ // กำหนดเวลาการ animated // ใส่ css class animation ถ้าต้องการ $(this).addClass( "shake-horizontal" ); console.log( "Done" ); }); }); }); </script> </body> </html> |

ความคิดเห็นที่
3
ผมเอาโค้ดมารัน ทำไมน้อยกว่า 50 มันยังเป็นสีฟ้าอยู่ครับ
พอมี demo เเบบถ้า 100% ให้ในกรอบเเดง ให้ขยับหรือ มีสีติดๆดับๆ เเบบให้รู้ว่าตัวนี้ 100% เเล้ว
ผมไม่รู้ว่าเรียกว่าอะไร ขอบคุณครับ
พอมี demo เเบบถ้า 100% ให้ในกรอบเเดง ให้ขยับหรือ มีสีติดๆดับๆ เเบบให้รู้ว่าตัวนี้ 100% เเล้ว
ผมไม่รู้ว่าเรียกว่าอะไร ขอบคุณครับ

ความคิดเห็นที่
4
เหมือนตัวอย่างด้านบนจะยังไม่สมบูรณ์ น่าจะต้องตรวจสอบ
การสิ้นสุดของการ animated เพิ่มเติมอีก แล้วค่อยเพิ่ม effect ดูตัวอย่างด้านล่างเพิ่มเติม
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | <!doctype html> <html lang= "en" > <head> <meta charset= "UTF-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1" > <title>Document</title> </head> <body> <style type= "text/css" > .my-bg-red{ background-color:red !important; } .my-bg-blue{ background-color:#007bff !important; } .shake-horizontal { -webkit-animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both; animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both; } .blink-1 { -webkit-animation: blink-1 0.6s both; animation: blink-1 0.6s both; } /* ---------------------------------------------- * Generated by Animista on 2020-3-30 13:6:10 * Licensed under FreeBSD License. * See http://animista.net/license for more info. * w: http://animista.net, t: @cssanimista * ---------------------------------------------- */ /** * ---------------------------------------- * animation blink-1 * ---------------------------------------- */ @-webkit-keyframes blink-1 { 0%, 50%, 100% { opacity: 1; } 25%, 75% { opacity: 0; } } @keyframes blink-1 { 0%, 50%, 100% { opacity: 1; } 25%, 75% { opacity: 0; } } /* ---------------------------------------------- * Generated by Animista on 2020-3-29 21:9:20 * Licensed under FreeBSD License. * See http://animista.net/license for more info. * w: http://animista.net, t: @cssanimista * ---------------------------------------------- */ /** * ---------------------------------------- * animation shake-horizontal * ---------------------------------------- */ @-webkit-keyframes shake-horizontal { 0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); } 10%, 30%, 50%, 70% { -webkit-transform: translateX(-10px); transform: translateX(-10px); } 20%, 40%, 60% { -webkit-transform: translateX(10px); transform: translateX(10px); } 80% { -webkit-transform: translateX(8px); transform: translateX(8px); } 90% { -webkit-transform: translateX(-8px); transform: translateX(-8px); } } @keyframes shake-horizontal { 0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); } 10%, 30%, 50%, 70% { -webkit-transform: translateX(-10px); transform: translateX(-10px); } 20%, 40%, 60% { -webkit-transform: translateX(10px); transform: translateX(10px); } 80% { -webkit-transform: translateX(8px); transform: translateX(8px); } 90% { -webkit-transform: translateX(-8px); transform: translateX(-8px); } } </style> <div class = "simple-wrap" > <div class = "card-body" > <div class = "progress-bar" data-percent= "100" ></div> </div> </div> <div class = "simple-wrap" > <div class = "card-body" > <div class = "progress-bar" data-percent= "50" ></div> </div> </div> <script type= "text/javascript" > $( function (){ $( ".simple-wrap .progress-bar" ).each( function (key, ele){ var dataPercent = $(ele).data( "percent" ); var cssClass = (dataPercent <= 50)? "my-bg-red" : "my-bg-blue" ; $(ele).text(dataPercent+ "%" ) // กำหนดตัวเลข .addClass(cssClass) // กำหนด class สีตามต้องการ .css({ width: '0px' // กำหนดขนาดเริ่มต้น }).animate({ width:dataPercent+ "%" // กำหนดการเปลี่ยนแปลงของ animation },1000, function (){ // กำหนดเวลาการ animated // ใส่ css class animation ถ้าต้องการ // กำหนดให้ตรวจสอบ เมื่อ สิ้นสุดการ เคลื่อนไหว $(this).one( "webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend" , function (event) { console.log( "Done" ); $(this).addClass( "blink-1" ); console.log($(this)[0].style.width); }); }); }); }); </script> </body> </html> |

ขอบคุณทุกการสนับสนุน
![]()