Smoke | HTML CSS

preview_player
Показать описание
#shorts #html #css #javascript #tutorials #trending
Follow us on:

Sound effect from Pixabay.
Рекомендации по теме
Комментарии
Автор

In one minute he did something i would take hours to do.

Contentdeleted
Автор

With emmet and scss, time seems to be compressed tremendously.

rudwnok
Автор

I am learning for game designer and i can make this in minute i didnt know programing with Html was this hard

anelkaljubojevic
Автор

here are some tips on html in sublime text that will speed up the process of writing code
1. to write the initial html code, just write html and press tab
2. to make any tag quickly, write its name and click tab
3. To create a class, it is enough to write a tag, then a period and the name of the class. Example: b.color_red. it will turn out <b class="color_red"></b>
good luck bro!

Osel_kek
Автор

you should use .smoke span:nth-child(even/odd) or

awedsa
Автор

You can just do: ‘.s1, .s3, .s5, .s7, .s9 {css here}’

GlixedYouTube
Автор

As feedback, I wanted to watch this, but i won't waste time waiting until the end just to discover if this is something i'm interested in.

xDubaRx
Автор

hey man, you created by yourself or learned from somewhere else.
if by own, plz tell me how much time it took to learn it

tribalcheif
Автор

I copyed your code for practice here, thx

rafa.
Автор

Not what I was expecting, but still cool

cadillacjack
Автор

You produce amazing videos but too fast for us the beginners please slow down so we can learn

qckgevk
Автор

In description which link you have provided is not working so Kindly also provide your source code in description because I'm a beginner in html css and javascript I have done html now working on css

BahriaBoy
Автор

Use ai to do it in one minute

Moral of the story:- eat five star do nothing

sanjibdas
Автор

Respect, fantastic motivational job, but please change the music, this music is really ennoying me when I see your videos, sorry

DilnozaUK
Автор

Though ur tutorial should be with the human voice n speed should be moderate for starters

jamesalfred
Автор

for the formatter are you using Prettier?

Kichijoji_Abiko
Автор

Do you have a github repo with the source for these?

philipbranum
Автор

В Unity это делается без единой строчки кода, или пару строк.

Alex_Forest
Автор

Wow.
You produce amazing videos.
I like your videos?

tafacdafranck
Автор

You could also do

document.addEventListener('DOMContentLoaded', function(){
let parent =

for(let i = 1; i <= 9; i++){
let child =
if (child) {
if (i % 2 === 0) {
child.style.animation = `smokeL 10s ${i}s infinite`;
} else {
child.style.animation = `smokeR 10s ${i}s infinite`;
}
}
}
});

thetrainees