This was really helpful.Thank you! just bought your Udemy course too
@niyasbeef78154 жыл бұрын
Awesome 👌👌👌👌👌
@NightEdgeVerified2 жыл бұрын
pls make tutorial for auto changing background on click
@Greywolf48485 жыл бұрын
doesn't work for me
@candeee266 жыл бұрын
i love your tutorials. there're easy, quicly and quiet. perfect. i'm so thankful!
@PhilMinecraft3 жыл бұрын
What about includes header and sidenav?
@AhmedAzmizem3 жыл бұрын
What if I wanted to change the background color as well as the font color by a click event on any place on the web page, to create a contrast, is there any way I can do that?
@featuretechprojects4 жыл бұрын
you have made this presentation on what ?
@natalisulcer9742 жыл бұрын
omg )) so easy )) thank you so much
@jharaislam49282 жыл бұрын
very nice bro
@raycoustum5 жыл бұрын
Whats the name of that page with those colors?
@AdarshSingh-hm8ss6 жыл бұрын
Awesome
@GuitarsRgood74 жыл бұрын
Good stuff
@sangkarinairkochunninair42464 жыл бұрын
Sir is this project can be link to java applet to javascript sir?
@brunosantos95514 жыл бұрын
Wish i could do this to animated gradients, actually trying to do that... but no luck.
@nayeemuddin46254 жыл бұрын
Can i do that with images??? When i reload the page?
@deepakkumar-fp8uj4 жыл бұрын
yes add image
@nayeemuddin46254 жыл бұрын
@@deepakkumar-fp8uj can you help with some tutorial link???
@ezzerrah88975 жыл бұрын
im trying to learn java. thank you for your sample. it's so easy to understand. how can i access the color code you were just copying. i think that is also good for beginner like me. thank you.:)
@strangejmaster5 жыл бұрын
Java or Javascript? There very different... I'm probably going to get like r/whooshed...
@NotAltergeist5 жыл бұрын
@@strangejmaster I don't think it's a woosh lol, he's serious.
@arazmammadov92764 жыл бұрын
Please note, Java is different than JavaScript
@rakeshraman43803 жыл бұрын
Good Day, Sir. You have done a colorful job. Your video will really bring color to my knowledge. Thanks again, Sir.
@YangMiyt4 жыл бұрын
Thank you so much !
@silveribezim93515 жыл бұрын
Which text editor is this
@andresj43534 жыл бұрын
dont really get why it doesn't work if you put i++ instead of ++i. can someone explain?
@pervanghatrajathchachu11004 жыл бұрын
it goes in this way i=0; a=i++; b=++i; now the value of a is 0 but value of b is 1 ++i gets incremented there itself where as i++ gets incremented when i is mentioned after i++. if, it was in this way i=0; a=i++; a=i; b=++i; then a and b would be 1.
@locomotivpk3 жыл бұрын
Question: color = color < color.length ? ++color : 0; Why you placed ? before pre incrementation in this code?
@redheadedgamer883 жыл бұрын
What's the website for the colors?
@luckcity23103 жыл бұрын
im trying to code two buttons one makes the color change and a different one to take me to a different page, i typed in the code for the color change button correctly and it works but when i code in the other button it doesnt work and instead does both things at once so it changes the color and takes me to the next page. how do i fix this? how do i make it so that both codes arent linked to the same button?
@oliverman38853 жыл бұрын
did you ever find an answer
@Snebbet4 жыл бұрын
how can I change the colour of the button by clicking?
@maciejmyslinski78205 жыл бұрын
What is the website name for colors?
@selinkarahan75035 жыл бұрын
material palette
@sapphiresky96033 жыл бұрын
Glad you didn't use note! Thank you.
@raycoustum5 жыл бұрын
Cool video, just that id use an id from an html resource.
@SadMtn4 жыл бұрын
Thanks :3
@julesbarryjohnson97893 жыл бұрын
Where do you get the colors from?
@thsantos_henrique4 жыл бұрын
css button 1:56
@hritwikadubey39643 жыл бұрын
can we change texts in similar way?
@haiderrizvi50154 жыл бұрын
When the page has changed to the last colour in the array, then it takes two clicks to change the colour. How to fix this?
@stevens15423 жыл бұрын
in the function add -1 after color.length, like this: "color.length-1 ? ++i : 0;"
@iam_shaillu3 жыл бұрын
Hello sir.. can we use this method for switch between only two colours, like night and light mode!
@mello89714 жыл бұрын
Whats with the Song. Somewhat like a horror movie
@bobbygupta67546 жыл бұрын
sir i did but it was chang only one color pls tell ,me how slove??
@nextgreatest77115 жыл бұрын
you have to check if you write the loop correct i++
@hj19162 жыл бұрын
Please change the background music to a less dismal and dreary one. Thanks,
@ravin4196 жыл бұрын
How to use images instead of colors .i want multiple images on every click.
@DemonxModRx5 жыл бұрын
same, I'm trying to make a click-based game, where when you click a button, the background image changes. Can you help me if you find a way to do it?
@yanickpalmers5 жыл бұрын
@@DemonxModRx i can help you, if you still want
@DemonxModRx5 жыл бұрын
@@yanickpalmers sure!
@yanickpalmers5 жыл бұрын
@@DemonxModRx add bubblebut1#0169 on discord
@davidch67465 жыл бұрын
@@yanickpalmers public answer pls xd
@thsantos_henrique4 жыл бұрын
css body 1:35
@thsantos_henrique4 жыл бұрын
button 0:44
@samjain20014 жыл бұрын
Background sound too eritating
@alexgeorgiev61405 жыл бұрын
Hey can you send me code because this code don"t working pls
@reonsbd5 жыл бұрын
Switch color "click me" var color =["#e74c3c","#3498db","#2ecc71","#95a5a6","#f1c40f","#e74c3c"]; var i = 0; document.querySelector("button").addEventListener("click",function(){ i=i < color.lenght ? ++i :0; document.querySelector("body").style.background= color[i] })
@deepakkumar-fp8uj4 жыл бұрын
@@reonsbd for regular change after last index color: add if (i == color.length) i = 1;
@thsantos_henrique4 жыл бұрын
script done 5:55
@mvrtinmadethebeat3 жыл бұрын
Bruh, it only changes one color and then nothing works anymore :(
@nejc34 жыл бұрын
Question, Would you also store images in var if I wanted to change the background image on click?
@halaldose45944 жыл бұрын
Maybe it work
@rafaelherrera82974 жыл бұрын
h moment
@abhishekjain53145 жыл бұрын
it is not working with for loop
@prashik63286 жыл бұрын
it's so cool
@jackblack25675 жыл бұрын
can i use this to swap text?
@rohithraghuram645 жыл бұрын
could be used. But i don't know the code
@nishimayekar27014 жыл бұрын
Instead of color can the same logic be used to change images
@swallowedinthesea114 жыл бұрын
Yes!
@thisvb4 жыл бұрын
h moment netong club
@naeetr23502 жыл бұрын
could we just do the function (and how) on the background itself instead of a button ?
@troll_ac5 ай бұрын
Hi, do you still want to know the answer to your question)
@user-er5wh8mf8s6 жыл бұрын
How Can I Put Something Like onclick But I Want It while clicking ???
@user-er5wh8mf8s5 жыл бұрын
MustBeTheGanja Thanks 😍
@andrejprenkelushaj94995 жыл бұрын
@MustBeTheGanja How???????
@TheKathty6 жыл бұрын
error addEventList *e* ner
@OnlineTutorialsYT6 жыл бұрын
yes
@andrejprenkelushaj94995 жыл бұрын
@@OnlineTutorialsYT what yes lolol
@raftaartiwari92386 жыл бұрын
Plz video make on scratch card
@JV-nx8xm6 жыл бұрын
AWESOMEEEEE!
@bilalshuja1314 жыл бұрын
i = i< color.length ? ++i :0; i need to know about this statment .. can anyone tell please ???
@naveenkr59924 жыл бұрын
It's a kind if conditional statement like if
@naveenkr59924 жыл бұрын
The one between = and ? The condition and the first expression after ? Is executed if the result of the condition is True , if it's false the other one is executed
@maxp9184 жыл бұрын
It's called the ternary operator: kzbin.info/www/bejne/lZ2omHx_oq2ig5Y
@anuragpandey24936 жыл бұрын
can you make the same in angular too ..
@MaknunKhan4 жыл бұрын
i = i < color.length ? ++i : 0; could anyone explain what does mean in this code ?
@RivaanRanawat4 жыл бұрын
It's Ternary operator. In if-else statement, you would write the same code as... if(i
@sanskarkakde25523 жыл бұрын
Disappointing music
@MightyMigi5 жыл бұрын
DELETE THIS VIDEO AND DO VOICE OVER NO ONE SHOULD HAVE TO WATCH THIS WITH ANNOYING MUSIC