1614036000
In this video, you are going to learn how to design an animated bar chart using HTML, CSS, and JQuery. First let’s see what is the purpose of a bar chart. The purpose of a bar chart is to represent relational information as the bars display the quantity or persentage for a particular category. The vertical axis of the bar chart is called the y-axis, while the bottom of a bar chart is called the x-axis. So let’s see how to create this animated bar chart.
Subscribe: https://www.youtube.com/channel/UCNDmzGYwwT3rdY3xQuW8QOA
index.html
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Bar Chart</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" charset="utf-8"></script>
</head>
<body>
<!--chart start-->
<div class="chart">
<ul class="numbers">
<li><span>100%</span></li>
<li><span>50%</span></li>
<li><span>0%</span></li>
</ul>
<ul class="bars">
<li><div class="bar" data-percentage="50"></div><span>Option 01</span></li>
<li><div class="bar" data-percentage="30"></div><span>Option 02</span></li>
<li><div class="bar" data-percentage="60"></div><span>Option 03</span></li>
<li><div class="bar" data-percentage="100"></div><span>Option 04</span></li>
<li><div class="bar" data-percentage="80"></div><span>Option 05</span></li>
</ul>
</div>
<!--chart end-->
<script type="text/javascript">
$(function(){
$('.bars li .bar').each(function(key, bar){
var percentage = $(this).data('percentage');
$(this).animate({
'height' : percentage + '%'
},1000);
});
});
</script>
</body>
</html>
style.css
body{
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: "Roboto", sans-serif;
background: #333;
}
.chart{
width: 600px;
height: 300px;
display: block;
}
.numbers{
color: #fff;
margin: 0;
padding: 0;
width: 50px;
height: 100%;
display: inline-block;
float: left;
}
.numbers li{
list-style: none;
height: 150px;
position: relative;
bottom: 145px;
}
.numbers span{
font-size: 12px;
font-weight: 600;
position: absolute;
bottom: 0;
right: 10px;
}
.bars{
color: #fff;
font-size: 12px;
font-weight: 600;
background: #555;
margin: 0;
padding: 0;
display: inline-block;
width: 500px;
height: 300px;
box-shadow: 0 0 10px 0 #555;
border-radius: 5px;
}
.bars li{
display: table-cell;
width: 100px;
height: 300px;
position: relative;
}
.bars span{
width: 100%;
position: absolute;
bottom: -30px;
text-align: center;
}
.bars .bar{
display: block;
background: #17C0EB;
width: 50px;
position: absolute;
bottom: 0;
margin-left: 25px;
text-align: center;
box-shadow: 0 0 10px 0 rgba(23, 192, 235, 0.5);
transition: 0.5s;
transition-property: background, box-shadow;
}
.bars .bar:hover{
background: #55EFC4;
box-shadow: 0 0 10px 0 rgba(85, 239, 196, 0.5);
cursor: pointer;
}
.bars .bar:before{
color: #fff;
content: attr(data-percentage) '%';
position: relative;
bottom: 20px;
}
#html #css
1618667723
how to create a Sidebar Menu using HTML and CSS only. Previously I have shared a Responsive Navigation Menu Bar using HTML & CSS only, now it’s time to create a Side Navigation Menu Bar that slides from the left or right side.
#sidebar menu using html css #side navigation menu html css #css side navigation menu bar #,pure css sidebar menu #side menu bar html css #side menu bar using html css
1621077133
Hello Readers, welcome to my other blog, today in this blog I’m going to create a Responsive Footer by using HTML & CSS only. Earlier I have shared How to create a Responsive Navigation Menu and now it’s time to create a footer section.
As you can see on the image which is given on the webpage. There are various important topics there like About us, Our services and subscribes, some social media icons, and a contact section for easy connection. I want to tell you that it is fully responsive. Responsive means this program is fit in all screen devices like tablet, small screen laptop, or mobile devices.
#responsive footer html css template #footer design in html #simple footer html css code #simple responsive footer codepen #responsive footer code in html and css #responsive footer html css codepen
1626371100
Navigation Bar Animation Using HTML & CSS & jQuery | Active tab animation using HTML CSS and jQuery
Music: “Royalty free music from Bensound”
You can donate 💰💰 at paypal.me/devamitjha
Comment Below for Source code
#devamitjha #navbar #navigationBar #cssanimation #jQueryNavbar #UIDesign
#jquery #css #html
1617789060
The prospect of learning HTML can seem confusing at first: where to begin, what to learn, the best ways to learn — it can be difficult to get started. In this article, we’ll explore the best ways for learning HTML to assist you on your programming journey.
Hypertext Markup Language (HTML) is the standard markup language for documents meant to be displayed in a web browser. Along with Cascading Style Sheets (CSS) and JavaScript, HTML completes the trio of essential tools used in creating modern web documents.
HTML provides the structure of a webpage, from the header and footer sections to paragraphs of text, videos, and images. CSS allows you to set the visual properties of different HTML elements, like changing colors, setting the order of blocks on the screen, and defining which elements to display. JavaScript automates changes to HTML and CSS, for example, making the font larger in a paragraph when a user clicks a button on the page.
#html #html-css #html-fundamentals #learning-html #html-css-basics #html-templates
1595879340
Animated Search Bar using HTML CSS & JQuery | Animated Search Box
#css #html #jquery