Show-Hide Password Toggle in JavaScript (Free Code)
Do you want to create Show and hide password using JavaScript? In this article you will know how to create show password eye icon javascript. This type of toggle password…
In this article, I will share ten CSS Heart Loading Animation designs. These Pulsing Heart CSS animation designs are created with html and css. Also, some designs use JavaScript and SVG.If…
In this article you will know how to create Drag and Drop File Upload using HTML CSS and JavaScript. drag and drop file upload javascript you can create very easily…
In this article I have given 10 best Flashlight Effect HTML CSS examples. Every flashlight effect design here is very beautiful. Some designs are made with only html and css.…
Do you want to create a CSS Skeuomorphism Button? In this article you will know how to create Skeuomorphism Button using html, css and javascript. Earlier I have created many…
CSS Pulse Animation We see it in different places on web pages. Pulse Animation is used to make different UI elements interesting.
Here we will discuss how a Pulse Animation can be created using CSS. Here I have shared different types of designs such as Simple Pulse Animation CSS, button pulse animation, text pulse animation, image pulse animation, pulse animation on hover, etc.
Here I will use only CSS and HTML. I have shared here the complete information of each design, source code, and live demo of everything.
Examples – 1
This is a simple Pulse Animation design created by HTML and CSS only. This design is basically a basic example of Pulse Animation.
There is a small round point here that will continue to be the center of animation.
Hopefully, with the help of the demo button above, you know how it works. If you want you can download all the code using the button below.
But below I have given all the HTML CSS code. The code used for this CSS Pulse Animation effect is very simple so you will not have any difficulty understanding it.
The following code is the HTML code that helps to add the basic information of this pulsing animation. Here I have put together all the HTML codes that you can copy and paste into your HTML file.
The following code is the CSS code that activates this pulsing animation. Copy these and paste them into your CSS file. Remember to rename your CSS file to ‘style.css’.
Hopefully, you have been able to create a simple pulse animation design using the above code.
Examples – 2
In this tutorial, we will learn how to create a modal popup using React js. Earlier we learned how to create a popup window using JavaScript.
React is a free and open-source front-end JavaScript library. To create this react js modal popup example you need to have some idea about react. React js is used to create most user interface components.
Before this, we created a modal popup using only Html and CSS. With it, I learned how to create different elements using the popup window. This reacts modal popup has to be opened manually by clicking on the button.
Model pop-ups are a common web element that we see on various websites. Every time we visit a web page we see such a pop-up after a certain period of time.
Although in that case automatic pop-ups are used. However, this react js modal popup example is not automatic. It has to be opened by clicking on the button.
See the Pen
Modal Popup in React JS by Shantanu Jana (@shantanu-jana)
on CodePen.
Since this is a basic example of React modal, there is not much information here. The popup window contains some text and a cancel button. There is also a popup button which after clicking on it we will see a simple modal popup.
We have already discussed in an article how to create an automatic popup window using JavaScript. You can easily create a popup login form, popup registration form and email subscription form using this react js popup example.
Now we will learn how to create this react popup form. If you want to know step by step then follow the tutorial below. However, if you want, you can download all the code using the button below the article.
As I said earlier, React is an open-source JavaScript library, so you have to use React’s CDN link to activate the code.
The following codes are HTML codes. HTML is used a lot in the case of React. Here we will create all the elements in JavaScript using ‘createElement’.
JavaScript Audio Player is a popular client-side project. This type of Simple JavaScript Audio Player is used when using audio in projects or websites. Music player is made in many advanced ways using different types of programming code.
From this tutorial, you will learn how to create a Simple Audio Player using HTML 5 and javascript. There are many tutorials on the Internet for creating HTML audio players.
However, I noticed that a lot of advanced JavaScript has been used to create that design. I have created this music player tutorial to solve that problem.
You will find many tutorials on creating a simple audio player on the Internet. However, in most cases, a lot of difficult JavaScript has been used. However, in this case, I have used very simple JavaScript and no external library is used here.
Ordinary music players have many options. Image, song change options, playlists, etc. make the audio player interesting. Live Preview 👇
See the Pen
Untitled by Shantanu Jana (@shantanu-jana)
on CodePen.
Hopefully from the demo above you have learned how to create an HTML Audio Player. With this music player HTML code you can copy from the demo section.
Since this is a simple design, there are not many options. Only one audio has been used here. It also has some control buttons that will control the audio. It also has a sound control button in this Simple JavaScript Audio Player.
Now I am going to see step-by-step how to create this project (music player HTML CSS javascript). Here I have used HTML, CSS, and javascript.
A box has been created at the top of the web page using the following HTML and CSS. This box will serve as the basic structure of this audio player.
In this article, you will learn how to zoom Background Images using HTML and CSS. Nowadays different types of smooth zoom effects are added to the image. Most Background Image…
If you want to create JavaScript Price Range Slider then this tutorial will help you. Price Range Slider is used in different places to determine the minimum and maximum value of a price.
You can create this kind of price range slider javascript in many ways. However, the design that I have shared here is absolutely simple. This range slider is made with basic HTML, CSS, and javascript. There are two handles that allow you to set the minimum and maximum values.
Price range slider HTML Search filters for different types of eCommerce websites. Which will show the result to the user depending on his price value.
I have fully explained the code used to make the Price Range Slider. If you are absolutely Beginner then there is no reason to worry.
Although it is not fully functional, only the basic design has been made here. You can watch the demo below to know how this Price Range Slider HTML CSS works.
See the Pen
Untitled by Shantanu Jana (@shantanu-jana)
on CodePen.
Hopefully, the preview above has completely helped you to know how it works. Here is the complete source code for enhancing this design. First, a box has been created on the webpage where all the information can be found.
There is a heading, there is a result box in which the price minimum maximum value can be seen, then there is a range slider.
I have taken the help of HTML, CSS, and JavaScript to create this Javascript Price Range Slider. First I have added all the information using HTML. I designed it using CSS. Finally, I have implemented this Price Range Slider using JavaScript.
The following HTML codes have been used to add all the information in this slider. First the basic structure, then a text, then the value view of the range slider, and a range slider with two handles. Copy the following Html code and add it to your Html file.
<div class="slider"> <p>Price Range</p> <div class="range-slider"> <span class="rangeValues"></span> <input value="1000" min="1000" max="50000" step="500" type="range"> <input value="50000" min="1000" max="50000" step="500" type="range"> </div> </div>