CChrisinkrzszk.hashnode.dev·Jun 26, 2022 · 4 min readCustom carousel with images JSHi! This time I wanted to try creating my own image carousel. For this I will use opacity and JavaScript for adding and removing classes. HTML As for HTML I will create container that will hold three slides and buttons to navigate. Buttons will be ...00
CChrisinkrzszk.hashnode.dev·Jun 18, 2022 · 2 min readWeb counter display JavaScriptHi! In this post I will show how to create web counter display. On some websites you can see section where companies show how many satisfied customers they have or products sold. And it looks like web page is calculating this on the go so when you lo...00
CChrisinkrzszk.hashnode.dev·Jun 17, 2022 · 2 min readDark mode using Sass variablesHi! In this post I will show how to create dark mode using Sass variables. HTML To switch between the modes we will use button. The rest is just test markup to test if our theme is working. <button class="theme" onclick="setTheme()">Theme</button> ...00
CChrisinkrzszk.hashnode.dev·Jun 16, 2022 · 2 min readRandom color background JavaScriptHi! This time I will try to create radom background color generator. This can be nice addition to any simple game, where you can switch background color with every user click. HTML Here we will only need background and button. <div class="back-color"...00
CChrisinkrzszk.hashnode.dev·Jun 15, 2022 · 3 min readCustom dropdown select with CSS and JSHi! Recently I had a task to create custom select dropdown. First thing that came to my mind is to use select tag with options, but this approach was not so good. This is why I decided to write it down here. Select tag testing First lets check what w...00