នេះជាកូដ Progress Bar (បកប្រែតាម Google ថា : របារវឌ្ឍនភាព) ដែលអាចយកមកប្រើផ្ទាល់ក្នុងអត្ថបទ ឬទីកន្លែងនានាក្នុង Bloggger បាន ដោយមិនបាច់ដាក់កូដចូលក្នុង Template នោះទេ។ Progress Bar តែងតែឃើញប្រើសម្រាប់គេហទំព័រដែលផ្ដល់សេវាកម្ម សម្រាប់បង្ហាញពីកម្រិត ឬបទពោសោធន៍លើអ្វីមួយ ដែលបង្ហាញជាស្ទីលរបារមានពណ៌ផ្សេង ឬអាចមានជាភាគរយក្នុងនោះផងដែរ តែក្នុងគន្លឹះនេះខ្ញុំបង្ហាញតែ Progress Bar ធម្មតាៗ មានរចលនា យើងហើយអាចប្ដូរពណ៌ និងល្បឿនចលនាបានខ្លះៗ។
៙ របៀបដាក់កូដ ៖
ជំហានទី១ : ចូលក្នុងគណនី Blogger.com របស់លោកអ្នកជំហានទី២ : ចូលទៅបង្កើត Post ថ្មីមួយ
ជំហានទី៣ : ត្រូវឈរលើតាប HTML ដើម្បីដាក់កូដ
ជំហានទី៤ : ចម្លងកូដខាងក្រោមនេះដាក់ចូល និងកែប្រែកូដខ្លះៗ ជាការស្រេច ។
<div class="contentContainer">កន្លែងកែកូដខ្លះៗ៖
<div class="skillBar"><h4>Adobe Photoshop</h4><div class="skillBarContainer"><div class="skillBarValue value-70"></div></div></div>
<div class="skillBar"><h4>Adobe Illustrator</h4><div class="skillBarContainer"><div class="skillBarValue value-50"></div></div></div>
<div class="skillBar"><h4>Adobe XD</h4><div class="skillBarContainer"><div class="skillBarValue value-60"></div></div></div>
<div class="skillBar"><h4>CorelDraw</h4><div class="skillBarContainer"><div class="skillBarValue value-40"></div></div></div>
</div>
<style>
.contentContainer {
background:#efefef;
padding: 5px 20px 5px 20px;
max-width:100%;
min-width:150px;
margin:0px;
border-radius:15px;
}
/*///////////////////////////////////////////////////
// Skill Bars \\
///////////////////////////////////////////////////*/
.skillBar {
margin-bottom:26px;
margin-bottom: 1.66em;
}
.skillBarContainer {
width: 100%;
max-width: auto;
height:26px;
height: 1.66em;
background: #e6eae3;
overflow: hidden;
border-radius:15px;
}
.skillBarValue {
height: 1.66em;
float: left;
background:#053eff;
border-radius: 0px;
}
/* Allowed values for the css skill bars */
.value-00 { width: 0; }
.value-10 { width: 10%; }
.value-20 { width: 20%; }
.value-30 { width: 30%; }
.value-40 { width: 40%; }
.value-50 { width: 50%; }
.value-60 { width: 60%; }
.value-70 { width: 70%; }
.value-80 { width: 80%; }
.value-90 { width: 90%; }
.value-100 { width: 100%; }
/*///////////////////////////////////////////////////
// Animation \\
///////////////////////////////////////////////////*/
@-webkit-keyframes slideIn {
0% { width: 0; }
25% { width:100%; }
100% { width: normal; }
}
@-moz-keyframes slideIn {
0% { width: 0; }
25% { width:100%; }
100% { width: normal; }
}
@-ms-keyframes slideIn {
0% { width: 0; }
25% { width:100%; }
100% { width: normal; }
}
@-o-keyframes slideIn {
0% { width: 0; }
25% { width:100%; }
100% { width: normal; }
}
@keyframes slideIn {
0% { width: 0; }
25% { width:100%; }
100% { width: normal; }
}
.skillBarValue {
-webkit-animation: slideIn 10s;
-moz-animation: slideIn 10s;
-o-animation: slideIn 10s;
animation: slideIn 10s;
}
</style>
- #053eff : ពណ៌របស់របារ
- slideIn 10s : ល្បឿនរបស់របារ ប្ដូរ 10s ទៅជា 5s ដើម្បីឲ្យលឿនជាងមុន។
source https://akbalthom.blogspot.com/2022/08/css-progress-bar-blogger.html
Comments
Post a Comment