Тёмный

Simple Text Animation Just By Using HTML & CSS 

DarkCode
Подписаться 330 тыс.
Просмотров 776 тыс.
50% 1

join our group in facebook
/ 704904666369941
like our page
/ darkcode0
Paypal Donation Link
paypal.me/YBen...
Take Files From Here
goo.gl/zbMbcf
tags
simple css text animation effects
simple text animation css
simple text animation in css
simple text animation css3
Music__
Cold Funk - Funkorama by Kevin MacLeod is licensed under a Creative Commons Attribution license (creativecommon...)
Source: incompetech.com....
Artist: incompetech.com/
Music promoted by Audio Library • Cold Funk - Kevin MacL...

Опубликовано:

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 414   
@yorkie4k
@yorkie4k 5 лет назад
Great Tutorial. Super easy to follow! I feel like I'm becoming better at HTML/CSS every day when I follow your videos!
@susankrywicki9019
@susankrywicki9019 4 года назад
Finally a tutorial that is paced well!!! Thank you!!!!
@DarkCodeOnline
@DarkCodeOnline 4 года назад
Welcome
@Complex_youtube
@Complex_youtube 4 года назад
Cool, but I really wish you would explain things
@mofurry8430
@mofurry8430 4 года назад
Timothy Sturdevant what do you want to know
@zeeshan_yousaf
@zeeshan_yousaf 4 года назад
I want to know what is key frame?
@chubbyBunny94
@chubbyBunny94 4 года назад
@@zeeshan_yousaf Almost every animation software uses keyframes. A keyframe is 'key=important' 'frame=snapshot/section' of the animation as a given point in time. In other words, it's like saying when the time is 5 seconds I want the animation to look like X. The computer does the work to figure out what needs to change between keyframes to make sure the animation matches a particular keyframe
@jv18creator
@jv18creator 4 года назад
@@chubbyBunny94 make sense 👌
@bus1966
@bus1966 3 года назад
@@zeeshan_yousaf google it!
@brenersousa2812
@brenersousa2812 5 лет назад
u are a monster, ty for code brazil loves u
@DarkCodeOnline
@DarkCodeOnline 5 лет назад
Welcome brother
@rajashekhar433
@rajashekhar433 5 лет назад
I have implemented by your video and it's really great
@SkexYouTube
@SkexYouTube 5 лет назад
ATOM
@vittoriobertolino
@vittoriobertolino 5 лет назад
@@SkexRU-vid ATOMIC
@guilhermequintino8951
@guilhermequintino8951 5 лет назад
Thank you DarkCode. I Am From Brazil and see your videos forever. Sorry, my english is horrible.
@DarkCodeOnline
@DarkCodeOnline 5 лет назад
welcome brother
@guilhermequintino8951
@guilhermequintino8951 5 лет назад
@@DarkCodeOnline Thank you
@ayobomari8990
@ayobomari8990 6 лет назад
is great can you speak in vedio for we knew understand and thank you
@ACALearn
@ACALearn 6 лет назад
i have i am teacher
@kingkiitt7355
@kingkiitt7355 5 лет назад
Agree. I'm a noob in programming and I often don't know what is happening in tutorials.
@Pupuzela
@Pupuzela 5 лет назад
No need to talk, just observe and connect the dot. You are smart enough.
@GanicuusFleXiTDrakensangOnline
@GanicuusFleXiTDrakensangOnline 4 года назад
@@kingkiitt7355 html and css is not programming
@iyliarasyad5963
@iyliarasyad5963 4 года назад
@@GanicuusFleXiTDrakensangOnline what you're trying to say is html and Css is coding not programming, right?
@rkyadav5952
@rkyadav5952 5 лет назад
Wow ..good . Plzz speak while making your video so that we not only make animation by copying your code but also we are able for self coding .. tnku
@hassanzaibsocial5818
@hassanzaibsocial5818 5 лет назад
the animation or the moving of text is not working! help please!!!
@seymen2772
@seymen2772 3 года назад
css code: *{ padding: 0; margin: 0; font-family: sans-serif; } body{ background: #000; } .container{ text-align: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100%; } .container span{ color: white; text-transform: uppercase; display: block; } .text1{ color: white; font-size: 60px; font-weight: 700; letter-spacing: 8px; margin-bottom: 20px; background: black; position: relative; animation: text 3s 1; } .text2{ color: #6ab04c; font-size: 30px; } @keyframes text { 0%{ color: black; margin-bottom: -40px; } 30%{ letter-spacing: 25px; margin-bottom: -40px; } }
@hibi9528
@hibi9528 5 лет назад
exciting tutorial ,just awesome,want more.....
@SRDFTM
@SRDFTM 5 лет назад
Please, never stop doing this videos!!
@ashafio
@ashafio 4 года назад
Thank you DARKCODE...Love from BANGLADESH.
@ACALearn
@ACALearn 6 лет назад
very nice
@phosphophyllite4588
@phosphophyllite4588 6 лет назад
i had to subscribe i have seen the best tutorial yet!
@Lkk233
@Lkk233 4 года назад
Which editor you are using bro?...bdw good video 💕 Love from India
@krisden7122
@krisden7122 6 лет назад
Hey there, I just want to ask, What "*" means? What use of this symbol? can someone explain to me? Thank You!
@DarkCodeOnline
@DarkCodeOnline 6 лет назад
* is a selector for select all elements and give them that style
@krisden7122
@krisden7122 6 лет назад
@@DarkCodeOnline oh. Thank you, Sir!
@omarmarufi7852
@omarmarufi7852 4 года назад
# foo {} will style the single element declared with an attribute id="foo" * foo {} will style all elements with an attribute class="foo" (you can have multiple classes assigned to an element too, just separate them with spaces --- class="foo bar")
@rodolfhoazevedo5420
@rodolfhoazevedo5420 4 года назад
@@omarmarufi7852 class is .foo, not *foo
@donsilver3728
@donsilver3728 4 года назад
Also in ASCII this sybol is the number 42. Since the *, or asteriks, can be used as wildcard in the most programming languages, it can be literally everything. This is the hidden meaning behind 42 is the answer to the question of everything.
@htmlkhaled2305
@htmlkhaled2305 5 лет назад
very nice ... thanks
@erlanerlan7739
@erlanerlan7739 5 лет назад
ARE YOU KIDDING MEE???? I love you!!!!! I want to see all your videos !!
@vilohith9076
@vilohith9076 2 года назад
thank you so much man, your tutorial actually worked!
@soulfly9306
@soulfly9306 5 лет назад
You realy good at this job. İ proud of you :D Go on !! :D
@firjaunbarlaman7097
@firjaunbarlaman7097 5 лет назад
Thank u, so worth it!
@rakshanc2519
@rakshanc2519 3 года назад
super and thanks a lot
@burhanrasitbuyukgur3910
@burhanrasitbuyukgur3910 5 лет назад
nice video. What is the program you are using?
@kod3619
@kod3619 5 лет назад
It is Atom.
@Senthilkumar-qb8jv
@Senthilkumar-qb8jv 3 года назад
What compiler are You Using? Please tell the name??
@talabsa4108
@talabsa4108 3 года назад
You legend I studying for channel
@ubtcreatives2695
@ubtcreatives2695 4 года назад
yet simple n attractive.
@joaoassembleia8575
@joaoassembleia8575 3 года назад
hey how can i do this but left to right and a border expand on the left side ?? pls help me how i do this
@Nevermind-cg5wr
@Nevermind-cg5wr 5 лет назад
what's url of website where he picks a color?
@NotLefty.
@NotLefty. 4 года назад
Nevermind flat ui icons.
@marivikki.b
@marivikki.b 5 лет назад
Why @keyframes doesn't work ??In my pc...
@Moshe5573
@Moshe5573 5 лет назад
do you have any more text animation videos? I have been struggling leaning them. great video by the way
@kareemafara-ll6oo
@kareemafara-ll6oo 3 года назад
very cool and usefull video thanks
@hthclash1970
@hthclash1970 5 лет назад
So simple and nice, thanks man👍
@WhiteoutMonster
@WhiteoutMonster 5 лет назад
One huge thing I'm not understanding is theres no name to the animation. I wonder if this whole process is completely different for animate.css
@hamidrezanaghshehchi7228
@hamidrezanaghshehchi7228 5 лет назад
How to refresh html view when css file change? Why did not use color picker in atom?
@David-gh5es
@David-gh5es 5 лет назад
*I dont know why but the position is not good.* this is at the top and i dont know why...(i'm using visual studio). can *anybody* help me
@ULtraBoy409
@ULtraBoy409 5 лет назад
What software editor did you use to auto display codes? Can you answer my question?
@DarkCodeOnline
@DarkCodeOnline 5 лет назад
atom with atom-html-preview package
@anjnasharma5308
@anjnasharma5308 5 лет назад
DarkCode, which software are you using?
@c-leg
@c-leg 5 лет назад
It should be Atom
@Ouissalfg
@Ouissalfg 5 лет назад
Atom
@ug_it_english
@ug_it_english 6 лет назад
जय होस् Thanks for sharing
@theguynextdoor8834
@theguynextdoor8834 3 года назад
Thanks so so much! Just 1 question, How would I do the same effect but only in hover ? I've tried every possible way in my knowledge but didn't work.
@dedisupardi2815
@dedisupardi2815 3 года назад
Excellent👍 thank you so much for sharing it to us
@ivar3243
@ivar3243 6 лет назад
Loved it, thanks!
@wwssr
@wwssr 3 года назад
This clip awesome dude...thank you
@shivansh_sg2987
@shivansh_sg2987 4 года назад
you dint add a class named container but how can you include it in css
@leokolla7188
@leokolla7188 6 лет назад
I see the darkcode moving up and down during the final animation. How i can fix it?
@iqraaaa9043
@iqraaaa9043 4 года назад
Same here
@GanicuusFleXiTDrakensangOnline
@GanicuusFleXiTDrakensangOnline 4 года назад
Hi, how I can make a transparent background text2, for example DARKCODE when i want in background image. I would be grateful for your answer.
@canvasbykaya
@canvasbykaya 4 года назад
did you figure it out cos i have the same issue
@Daniel71069
@Daniel71069 5 лет назад
Like the video, did help a lot! but how do you make the animation fade/go away after a couple seconds? like i want it to show for about 3seconds after then go away?
@anonym2.068
@anonym2.068 2 года назад
keep it up m man
@therumbling5615
@therumbling5615 3 года назад
This is great, but I want to know how to add anything else to it. When I code nothing else appears. Adding text or images doesn't work
@suchiridi9693
@suchiridi9693 5 лет назад
thank you bhava...
@madhuagarwal5518
@madhuagarwal5518 4 года назад
Hey @DarkCode I love your video and it has helped me out a lot but I had this question...is there a way to shorten or extend the time it takes for an animation to play?
@KashTheKingYT
@KashTheKingYT 3 года назад
3:04 Change 1s to 5s or whatever amount of seconds you want it to play
@ldnoobsgameplay2250
@ldnoobsgameplay2250 2 года назад
In which app he is making this please tell me???
@DarkCodeOnline
@DarkCodeOnline 2 года назад
it is atom
@mikazuchiashura255
@mikazuchiashura255 2 года назад
Idk what happen but I completely copy every single line of your code and it doesn't work
@CodGame-b7x
@CodGame-b7x 5 месяцев назад
Must check the library added in link ......
@parth_sanchania_0074
@parth_sanchania_0074 3 года назад
amazing css coding wenderfull . Thanks Bro. ;-)
@renzsuarez4027
@renzsuarez4027 4 года назад
My twxt cant go to the center but my code in container is right what do i do
@TheMisterOfGaming
@TheMisterOfGaming 5 лет назад
What's this color page?
@DarkCodeOnline
@DarkCodeOnline 5 лет назад
flatuicolors.com
@CrisAlaskaLyall
@CrisAlaskaLyall 4 года назад
so keyframes are declared in % instead of seconds, and the margin bottom defines the "DARKCODE" movement at 0% to 30% - hopefully i understood that right, else i need to find another video to this XD good job even without voice :)
@learnAndfun101
@learnAndfun101 5 лет назад
I'm being inspired dude !!❤
@theshadow8496
@theshadow8496 3 года назад
bro how did u make that second screen otput screen in vs or sumblime
@niranjanagupta2938
@niranjanagupta2938 5 лет назад
Superb bro
@eduerjaramillo1831
@eduerjaramillo1831 5 лет назад
me gustan estos videos que son rapidos y van al gro a lo que es
@professor549
@professor549 4 года назад
In text1 and text 2 class I used color it doest work but font-size work why..
@vishaljosan6866
@vishaljosan6866 3 года назад
Awesome bro I am a Student i am learning html and css coding i want to ask which application u use may i get link plz.?🥺
@rAjAbhinand98
@rAjAbhinand98 3 года назад
i am also a student... u can visual studio code or pycharm.. i am using both
@bodybody5609
@bodybody5609 4 года назад
So cool no bullshit at all
@Ebeninkisi1
@Ebeninkisi1 3 года назад
You are great. Thank you!
@shetiratan
@shetiratan 3 года назад
Professional Web design kayse coding kare इसपर video बनवाए bro 🙏
@nelsonerwinaleluyaquispe6528
@nelsonerwinaleluyaquispe6528 5 лет назад
Excelente, un saludo desde Bolivia.
@rsezuni
@rsezuni 5 лет назад
Your work is amazing!
@iamkakarotsaiyan3918
@iamkakarotsaiyan3918 4 года назад
Awesome!
@gouravbaghel3294
@gouravbaghel3294 5 лет назад
Which software ware you use for programming
@DarkCodeOnline
@DarkCodeOnline 5 лет назад
atom
@bassey1246
@bassey1246 5 лет назад
How do you divide it into 2 spaces like dt?
@salehmajeed
@salehmajeed 5 лет назад
Amazing but how this page will disappear to show the actual home page??
@salehmajeed
@salehmajeed 5 лет назад
@Pi ok thank you so much
@mdoverflow7683
@mdoverflow7683 5 лет назад
if i copied and pasted the animated text into a document, would it still do the cool effect?
@muhammadhaziqhafizuddin5411
@muhammadhaziqhafizuddin5411 2 года назад
Can i know why position absolute to class text1
@AbdulAziz-ov5kf
@AbdulAziz-ov5kf 5 лет назад
Widht height top widht transaction totally wrong %and pixel plz tell me how change the all % and px
@musicgaines7170
@musicgaines7170 4 года назад
What is that asterisk you added at the begining for?
4 года назад
To apply to the whole page.
@Akdo333
@Akdo333 3 года назад
Thank you, bro
@barewr828
@barewr828 5 лет назад
Awesome video, but my ATOM does not work with css, what packages do you use? Thanks
@dinushkamahawedage3186
@dinushkamahawedage3186 4 года назад
Magnificient
@mubeenuddin5643
@mubeenuddin5643 Год назад
is it possible to put music in website . i wanna do it in my personal website
@MAzeemSidd
@MAzeemSidd 5 лет назад
Brilliant bro... I really inspired...
@Catcat00-00
@Catcat00-00 Год назад
does anyone know what editor is being used here? thank you
@DarkCodeOnline
@DarkCodeOnline Год назад
Atom
@ouridea1015
@ouridea1015 4 года назад
Awesome
@jayeshjadhav6266
@jayeshjadhav6266 5 лет назад
That was really awesome tutorial 👍👍
@team-planning
@team-planning 5 лет назад
Big thanks
@aayush9134
@aayush9134 4 года назад
Please tell which code editor do you use?
@SSCAT0
@SSCAT0 4 года назад
Danke 😊
@gabrielmarques21
@gabrielmarques21 5 лет назад
Good job!
@EduardoBarros13
@EduardoBarros13 4 года назад
What extension do you use to preview at the right side?
@shaneallenbach5401
@shaneallenbach5401 3 года назад
Hello ! I really like your tutorials and I tried to make the same one but the animation doesn't work. Do someone know why ? Thank you !
@umaldo7
@umaldo7 5 лет назад
Great vid! Thanks for sharing.
@rick_sanz_oficial
@rick_sanz_oficial 4 года назад
love your videos tks
@rudraprasad106
@rudraprasad106 5 лет назад
Can we don this in notepad and the save it as html... Will it work... If I write as you've written
@DarkCodeOnline
@DarkCodeOnline 5 лет назад
yes
@margaretkariuki9825
@margaretkariuki9825 5 лет назад
@@DarkCodeOnline Can the same effects be done in Notepad?
@darshgupta6069
@darshgupta6069 4 года назад
@@margaretkariuki9825 yes
@PashtoTechChip
@PashtoTechChip 5 лет назад
Awesome code
@steep9695
@steep9695 4 года назад
What text editor u using???
@milododds1
@milododds1 4 года назад
Would it be possible to use these methods within a SharePoint site page?
@devyeasir4192
@devyeasir4192 5 лет назад
thanks for tips
@tejindersingh9339
@tejindersingh9339 3 года назад
Amazing Video...😍😍😍😍❤️ ...Can you tell the name of this ide ....
@uwu_raj
@uwu_raj 4 года назад
Can u tell me wat kinda compiler ur using
@yatharthsingh6207
@yatharthsingh6207 4 года назад
Which text editor u r using
@DarkCodeOnline
@DarkCodeOnline 4 года назад
Atom
Далее
Subtle, yet Beautiful Scroll Animations
5:04
Просмотров 1,7 млн
А Вы за пластику?
00:31
Просмотров 12 тыс.
Learn CSS Animations In 20 Minutes - For Beginners
21:22
10 Stunning CSS 3D Effect You Must See
3:00
Просмотров 1,5 млн
Typing Text Animation Using Only HTML & CSS
5:46
Просмотров 40 тыс.
Awesome CSS Search Box Using Only HTML & CSS
5:25
Просмотров 1,2 млн
А Вы за пластику?
00:31
Просмотров 12 тыс.