Circle Progress Bar Using Html CSS and SVG | CSS Percentage Circle

  Рет қаралды 103,456

Online Tutorials

Online Tutorials

Күн бұрын

Пікірлер: 88
@AlejanroDelHierro
@AlejanroDelHierro 4 жыл бұрын
If you want this to be more dynamic, use animation, like this: .box .percent svg circle:nth-child(2) { stroke-dashoffset: calc(440 - (440 *87) /100); stroke: #03a9f4; opacity: 10; animation: animate-circle 3s cubic-bezier(0,0.23,1,.1); } @keyframes animate-circle { 0% { opacity: 0; stroke-dashoffset: 440; } 30% { opacity: 0.30; stroke-dashoffset: 200; } 80% { opacity: 0.80; stroke-dashoffset: 100; } 100% { opacity: 10; } }
@AndrewTSq
@AndrewTSq 2 жыл бұрын
This is the best channel for me to learn CSS. CSS and HTML was like a black magic for me, and ive watched different youtuberes tutorials, but I never understood a thing really. Then I found this channel, and things made sense :) I like that we all the time see the updates on the side.
@XengShi
@XengShi 2 жыл бұрын
Your are genious sir ,❣ I don't have words for you. Aap mahaan hain.....
@thekokoserver
@thekokoserver 3 жыл бұрын
thanks you just saved me from headache
@m1ch3lr0m3r0
@m1ch3lr0m3r0 2 жыл бұрын
4:59 "Put percent value here", the most obvious thing in the entire video is what gets the most explanation.
@Mai-karunga-business
@Mai-karunga-business Жыл бұрын
Thank you ❤️
@Marc1920x1080p
@Marc1920x1080p Жыл бұрын
Thank you so much for this!!
@tinvo5369
@tinvo5369 4 жыл бұрын
wow, this is an awesome video! thanks
@IamManny777
@IamManny777 4 жыл бұрын
But that seems static, what's a way to make it dynamic so that its functional? I am not sure if it's possible to pass an arg into css but probably isn't best practice too ?
@jumalley
@jumalley 4 жыл бұрын
using js
@zegracamasterelite
@zegracamasterelite 4 жыл бұрын
Is completely normal pass args to css via classes binding in js, this change the dom and new styles can be applied, scss and front end frameworks also allow bind dinamic values in style
@foxmulderqqs
@foxmulderqqs 4 жыл бұрын
if you still here i can tell you how to turn dynamic
@IamManny777
@IamManny777 4 жыл бұрын
@@foxmulderqqs sure please do, my front end css work isn't very good but would love to get better.
@Shyrius
@Shyrius 3 жыл бұрын
@@foxmulderqqs can you tell me how to turn this to dynamic?
@lakshminarayanan9099
@lakshminarayanan9099 4 жыл бұрын
Excellent bro 👌🏻
@rnahmed4635
@rnahmed4635 3 жыл бұрын
Zajallahu Khairan.
@mohamedkhalilkhedhri9942
@mohamedkhalilkhedhri9942 2 жыл бұрын
Came excited left with depression I wish i achieve this lvl one day .. now , the only thing i know is how to do a background image xD
@stefanienaiser3066
@stefanienaiser3066 Жыл бұрын
Wow... it`s amazing.. what´s possible with only CSS! I like your videos... Maybe you can help me to fix a problem... I've made the progress circle according to your instruction... and it works very well on Edge-Browser... but not on firefox. Do you have any idea how to fix that? cheers stef
@maskman4821
@maskman4821 4 жыл бұрын
this is awesome !!!
@hodaelfi1941
@hodaelfi1941 3 жыл бұрын
thank you!!
@_praba
@_praba 3 жыл бұрын
if i give r = 100, what should i put for stroke-dasharray, stroke-dashoffset?
@mi-skal6880
@mi-skal6880 2 жыл бұрын
the formula is 2*r*P. This should be your dasharray and offeset
@mariannedeasis
@mariannedeasis Жыл бұрын
@@mi-skal6880 what is P?
@satinderkumar2472
@satinderkumar2472 4 жыл бұрын
Sir aap ko Web development me kitne salo experience hai please answer your works are awesome
@anchalsrivastava9763
@anchalsrivastava9763 3 жыл бұрын
Thank you 👏👏
@westfield90
@westfield90 4 жыл бұрын
Superb
@jobs408
@jobs408 4 жыл бұрын
How to make it dynamic?
@sayidinaahmadalqososyi9770
@sayidinaahmadalqososyi9770 3 жыл бұрын
Add javascript, tinggal mainin di style percentnya via js
@daidandy
@daidandy 4 жыл бұрын
wow,good man
@AaronLunaParrado
@AaronLunaParrado 4 жыл бұрын
The best!
2 жыл бұрын
formule circle svg= PI*2*r = range
@harshvaghanii
@harshvaghanii 4 жыл бұрын
Thanks man
@codewithdash833
@codewithdash833 2 жыл бұрын
good smooth music bro can you tell me what is music name ?
@zyishai
@zyishai 4 жыл бұрын
Just... thank you!!
@davidmontoya2787
@davidmontoya2787 4 жыл бұрын
Me dio de la siguiente forma: stroke-dasharray: 150; stroke-dashoffset: 150; stroke-dashoffset: calc(150 - (150 * 70) / 100);
@alexalannunes
@alexalannunes 4 жыл бұрын
👏👏👏👏👏👏 very good awesome But I did not understand this stroke-dasharray and dashoffset yet. I've read on several sites
@ZariDV
@ZariDV 4 жыл бұрын
Amazing! Thank you for this. It was just the right tutorial for the final touch I needed on a section my project. It was a nice base for me to take apart, put together and play around with until I could understand the code fully and implement it.
@crazycode2578
@crazycode2578 4 жыл бұрын
Thanks
@balaji-venkatraman
@balaji-venkatraman 3 жыл бұрын
This looks perfect but i wanted to increase and decrease the size of Progress bar what are the values i need to change?
@xhvsh
@xhvsh Жыл бұрын
stroke-dashoffset: calc(440 - (440 * X) / 100); just change the "X" to the value in %
@shoaib-je3ny
@shoaib-je3ny 4 жыл бұрын
Bro your android app is not showing on Playstore
@shoaib-je3ny
@shoaib-je3ny 4 жыл бұрын
Irshad bhai android app q nhi a raha hai aap ka Playstore par
@rootzxc3626
@rootzxc3626 4 жыл бұрын
Can you do it pure CSS only ?
@_praba
@_praba 3 жыл бұрын
how can i start the progress to move from top, instead of right???/
@seifcool
@seifcool 3 жыл бұрын
I have the same question.
@Str4ky
@Str4ky 2 жыл бұрын
Find a way to do it, in the ".box .percent" add a "transform: rotate(-90deg);" to rotate the whole circle and in the ".box .percent .number h2" add a "transform: rotate(90deg);" to put back the number to normal
@romuloalves9349
@romuloalves9349 4 жыл бұрын
Ótimo vídeo parabéns 👍.
@YahyaRahimov
@YahyaRahimov 4 жыл бұрын
Usin svg callin pure css 🥴🤪🙃
@sovonic322
@sovonic322 4 жыл бұрын
เยี่ยมยอด​
@BrightCode
@BrightCode 4 жыл бұрын
You have already done this before 😑😑 I did the same on my channel but mine I made it so that you will be the one to input the value yourself and the percentage will change
@OnlineTutorialsYT
@OnlineTutorialsYT 4 жыл бұрын
Yes...but this UI is different
@unknown-bx8my
@unknown-bx8my 4 жыл бұрын
plz make how to download canvas image tutoriols😢 why you don't apply my request😭
@YahyaRahimov
@YahyaRahimov 4 жыл бұрын
Yeah but ui is different luuul xD
@BrightCode
@BrightCode 4 жыл бұрын
@@YahyaRahimov 🤷🤷
@unknown-bx8my
@unknown-bx8my 4 жыл бұрын
only color is differnet
@hossainchowdhury9992
@hossainchowdhury9992 4 жыл бұрын
Why you use the link on the top of css?????
@BharanidharanB-ti5ct
@BharanidharanB-ti5ct 4 жыл бұрын
How to make the svg responsive?
@Rj_Punio
@Rj_Punio 3 жыл бұрын
it's svg the S stands for "scalable" so just adapt the size in your css with a media query and it will adapt ;)
@leonardofibonacci6574
@leonardofibonacci6574 Жыл бұрын
Hou have to use viewbox attribute. In this case for example viewBox="-10 -10 160 160" Later you can modify the svg dimension with media queries and the circles automatically adapt.
@Deus-lo-Vuilt
@Deus-lo-Vuilt 2 жыл бұрын
ty
@umairathar816
@umairathar816 2 жыл бұрын
i am looking for source file!! how i get ???
@FRANCHISCO
@FRANCHISCO 4 жыл бұрын
too bad why because no source code first comment!!!
@OnlineTutorialsYT
@OnlineTutorialsYT 4 жыл бұрын
If you want to learn something then try to write code himself
@OnlineTutorialsYT
@OnlineTutorialsYT 4 жыл бұрын
If you want only source code then join our channel membership...
@dawidepl7807
@dawidepl7807 4 жыл бұрын
Could you make tutorial on wave shapes?
@OnlineTutorialsYT
@OnlineTutorialsYT 4 жыл бұрын
Ok bro
@dawidepl7807
@dawidepl7807 4 жыл бұрын
@@OnlineTutorialsYT Thanks!
@dawidepl7807
@dawidepl7807 4 жыл бұрын
@@CoolScratcher I know, but it's better to make own one, than copy, don't you think?
@CoolScratcher
@CoolScratcher 4 жыл бұрын
@@dawidepl7807 Using the GUI of getwaves, you are technically making your own...
@dawidepl7807
@dawidepl7807 4 жыл бұрын
@@CoolScratcher no
@dundiramesh4086
@dundiramesh4086 4 жыл бұрын
This video is nice tq broo. Can you make a video of photo slider with different animations plzzz it helps me a lot. Plzz broo
@rs-vo1po
@rs-vo1po 4 жыл бұрын
i did so, with js. + transfom.rotate
@unknown-bx8my
@unknown-bx8my 4 жыл бұрын
please i need how to download canvas image turoriols plz plz make it😢😭
@khushbook2260
@khushbook2260 4 жыл бұрын
Sir please make a project of css or jquary to make ben 10 omnitrix effect i request you
@hariommourya2436
@hariommourya2436 4 жыл бұрын
Hey plz make anything satisfying
@OnlineTutorialsYT
@OnlineTutorialsYT 4 жыл бұрын
Ok bro
@umairathar816
@umairathar816 2 жыл бұрын
where is the source code?
@i_am_a_real_cat1443
@i_am_a_real_cat1443 3 жыл бұрын
listen to 1.75 speed for remix
@darkspeed62
@darkspeed62 2 жыл бұрын
This is so not worth the effrot
@imtiazahmedbhuiya3068
@imtiazahmedbhuiya3068 3 жыл бұрын
superb
@وليدالنادي-ح3ق
@وليدالنادي-ح3ق 3 жыл бұрын
Thanks
Animate Any SVG icons with CSS Only | SVG Stroke Animation With Html CSS
6:58
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 79 МЛН
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 145 МЛН
These CSS PRO Tips & Tricks Will Blow Your Mind!
8:48
Coding2GO
Рет қаралды 502 М.
Learn CSS Animations In 20 Minutes - For Beginners
21:22
Slaying The Dragon
Рет қаралды 1,1 МЛН
10 CSS PRO Tips and Tricks you NEED to know
9:00
Coding2GO
Рет қаралды 109 М.
Top 20 CSS & Javascript Effects | March 2020
4:42
Online Tutorials
Рет қаралды 1,3 МЛН
Create an animated, circular progress bar
34:37
Kevin Powell
Рет қаралды 47 М.
Animated Responsive Navbar with CSS - Plus Other Useful Tricks
11:40
📇How To Make Circular Progress Bar | HTML CSS JavaScript
13:47
Web Dev Made Easy
Рет қаралды 50 М.
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН