sjcjiieiwi




Css3 Shapes with coding

In this post, we will be learn about how to make css3 shapes with codings. shapes are like as Square, rectangle, triangle, circle etc.

Square




 
.squre{

  width:300px;
  height:300px;
  background:orange;
 
} 

RECTANGLE




.rectangle{

  width:400px;
  height:230px;
  background:orange;

} 

CIRCLE





.circle{

  width:300px;
  height:300px;
  background:orange;
  border-radius:150px;
} 

TRIANGLE





.triangle{

  width:0px;
  height:0px;
  border-bottom:150px solid orange;
  border-right:150px solid transparent;
  border-left:150px solid transparent;
 
 } 


TRAPIZIUM




 
.trapizium{

  width:200px;
  height:0px;
  border-top:0px solid transparent;
  border-bottom:150px solid orange;
  border-left:40px solid transparent;
  border-right:40px solid transparent;
 
} 

KITE






.kite{
 
  width:300px;
  height:300px;
  background:orange;
  position:relative;
 -webkit-transform:rotate(45deg);
 -ms-transform:rotate(45deg);
 transform:rotate(45deg); 

} 

CONE





.cone{

  width:0px;
  height:0px;
  border-top:300px solid orange;
  border-right:150px solid transparent;
  border-left:150px solid transparent;
  border-radius:300px;
 
}

Read more »

Css3 Shapes with Coding


Css3 Shapes with coding

In this post, we will be learn about how to make css3 shapes with codings. shapes are like as Square, rectangle, triangle, circle etc.

Square




 
.squre{

  width:300px;
  height:300px;
  background:orange;
 
} 

RECTANGLE




.rectangle{

  width:400px;
  height:230px;
  background:orange;

} 

CIRCLE





.circle{

  width:300px;
  height:300px;
  background:orange;
  border-radius:150px;
} 

TRIANGLE





.triangle{

  width:0px;
  height:0px;
  border-bottom:150px solid orange;
  border-right:150px solid transparent;
  border-left:150px solid transparent;
 
 } 


TRAPIZIUM




 
.trapizium{

  width:200px;
  height:0px;
  border-top:0px solid transparent;
  border-bottom:150px solid orange;
  border-left:40px solid transparent;
  border-right:40px solid transparent;
 
} 

KITE






.kite{
 
  width:300px;
  height:300px;
  background:orange;
  position:relative;
 -webkit-transform:rotate(45deg);
 -ms-transform:rotate(45deg);
 transform:rotate(45deg); 

} 

CONE





.cone{

  width:0px;
  height:0px;
  border-top:300px solid orange;
  border-right:150px solid transparent;
  border-left:150px solid transparent;
  border-radius:300px;
 
}

Read more »

Html Css Animation Examples



HTML CSS Animation Examaples with full Html Css codings

Start Html Css animation with a simple examples, as you can see below,

1. Basic Animation Example


.box-1{
width:50px;
height:50px;
background:orange;
position:relative;

-webkit-animation: skcals 5s linear infinite;

}

@-webkit-keyframes skcals{

0% {left:0px;}
 100% {left:230px; } 


} 


2. Colors Animation



 .animation-2{

width:40px;
height:40px;
background:gold;

 position:relative;

-webkit-animation: skcal 5s linear infinite;

}

@-webkit-keyframes skcal{

0% {left:0px; background:blue;}
 20% {left:40px; background:red;} 
 40% {left:80px; background:green;} 
 60% {left:120px; background:purple;} 
 80% {left:160px; background:lime;} 
100% {left:230px; background:orange; } 


} 
 
 

3. Progress Bar Animation


<h2>3. Progress Bar Animation</h2>

<div class="css-animation-3"><div class="progress-bar"></div></div>
<style>


.css-animation-3{
width:290px;
height:25px;
background:grey;
box-shadow:inset 1px 1px 1px black;
margin-left:10px;
border-radius:5px;
border:1px solid black;

}


.progress-bar{
width:40px;
height:25px;
background:lime;
border-radius:5px;

 position:relative;

-webkit-animation: sk 10s linear infinite;

}

@-webkit-keyframes sk{

0% {width:40px;}
50%{width:290px;} 
 100% {width:290px; } 



}



</style>


Read more »

Css3 Animations

Css3 Animations





Add css3 animations coding  you can get a more effective your website.

On this section, we will be learn about the Css3 animations coding for web pages.

For add a css code you would be add style tag( <style><\style>) on your web page codings.

Examples of Css3 Animation with full coading:-




<style>
.animation{

width:200px;
height:200px;
position:relative;
background:green;
border:4px solid black;


-webkit-animation:css 10s infinite;


}
@-webkit-keyframes css{

0% {border-radius:0px;}
100% {border-radius:100px; }

}

</style>


<div class="animation"></div>





Read more »

BEST HTML5 CALCULATOR

HTML5 CALCULATOR WITH FULL COADING




<html>




<head>

<style>
.main{
width:300px;
height:530px;
background:orange;
padding:0px;
margin:0px;
border:2px ridge black;

}
.header{
width:100%;
font-size:30px;
color:yellow;
background:green;
text-shadow:1px 1px 1px red;
height:35px;
text-align:center;
}
.cal, textarea{

width:100%;
height:150px;
background:white;
color:black;
font-size:15px;
padding:0px;

}
.result, input[type= "text"]{
width:100%;
height:40px;
color:white;
background:black;
font-size:15px;
padding:0px;
text-align:right;

}
input[type= "button"]
{

width:65px;
height:40px;
color:white;
background:black;
margin:13px 0px 5px 5px;
font-size:16px;
font-weight:bold;


 background-image: -moz-linear-gradient(bottom, #111111, #999999); /* FF3.6 */
 background-image: -o-linear-gradient(bottom, #111111, #999999); /* Opera 11.10+ */
 background-image: -webkit-gradient(linear, left top, left bottom, from(#111111), to(#999999)); /* Saf4+, Chrome */
 background-image: -webkit-linear-gradient(bottom, #111111, #999999); /* Chrome 10+, Saf5.1+ */


}

</style>
</head>

<body>
<div class="main">

<div class="header">SK CALCULATOR</div>
<form name= "cal">
<div class="cal"><textarea name= "rst"></textarea></div>

<div class="result"><input type= "text" name= "res"></div>

<div class="btn-area">

<input type= "button" onClick= "cal.rst.value+='7'" value= "7">

<input type= "button" onClick= "cal.rst.value+='8'" value= "8">

<input type= "button" onClick= "cal.rst.value+='9'" value= "9">

<input type= "button" onClick= "cal.rst.value+='+'" value= "+">

<br>

<input type= "button" onClick= "cal.rst.value+='4'" value= "4">

<input type= "button" onClick= "cal.rst.value+='5'" value= "5">

<input type= "button" onClick= "cal.rst.value+='6'" value= "6">

<input type= "button" onClick= "cal.rst.value+='-'" value= "-">

<br>

<input type= "button" onClick= "cal.rst.value+='1'" value= "1">

<input type= "button" onClick= "cal.rst.value+='2'" value= "2">

<input type= "button" onClick= "cal.rst.value+='3'" value= "3">

<input type= "button" onClick= "cal.rst.value+='*'" value= "*">

<br>

<input type= "button" onClick= "cal.rst.value+='.'" value= ".">

<input type= "button" onClick= "cal.rst.value+='0'" value= "0">

<input type= "button" onClick= "cal.rst.value=Math.sqrt(cal.rst.value)" value= "sqrt">

<input type= "button" onClick= "cal.rst.value+='/'" value= "/">

<br>
 <input type= "button" onClick= "cal.rst.value='' " value= "Del">

<input type= "button" onClick= "rst.value = rst.value.substring(0, rst.value.length - 1)" value= "Cel">

<input type= "button" onClick= "cal.rst.value+='00'" value= "00">

<input type= "button" onClick= "cal.res.value=eval(cal.rst.value)" value= "=">

<br>



<div>
</form>
</div>
</body>
</html>

SK CALCULATOR





Read more »

HTML5 Calculator with coding

HTML5 CALCULATOR WITH CODING

<html>
 <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>

<head>
<title>SK Calculator</title>

<style>
 body{

margin: 0px;
padding: 0px;
background:orange;



}
.tabl-1{
 width:100%;
 height:100%;
 padding:0px;
 margin:0px;
 border:2px solid orange;



}

.head{
 color:lime;
 font-size:35px;
 padding:0px;
 text-shadow:
 1.5px 1.5px 2px red,
  2px 2px 0px red,
  2.5px 2.5px 2px red,
  3px 3px 0px lime,
  3.5px 3.5px 2px red,
  4px 4px 0px red

  ;


}

.val{
 width:310px;
 height:170;
 color:black;
 font-size:20px;
 padding-left:5px;
 line-spacing:0px;
 padding-right:5px;
 margin-right:1px;
 border:2px solid black;
}

.result{
 width:310;
 height:40;
 text-align:right;
 font-weight:bold;
 padding-right:5px;
 padding-left:5px;
 font-size:22px;
 color:white;
 margin-top:-5px;
 background:black;
 border:2px solid black;
}

th, tr{
 border-radius:5px;
}
.num{
 width:100%;
 height:100%;
 margin-left:0px;
 padding:5px;
 border-radius:5px 5px 0px 0px;
 border:2px solid orange ;

}



input[type="button"]{
 background:black;
 width:65px;
 height:50px;
 font-size:25px;
 font-weight:bold;
 color:lime;
 border-radius:10px 4px 10px 4px;
 border-width:1px 2px 2px 1px;
 border-color:orange;
 border-style:solid;
 text-shadow:1.5px 1.5px 0px orange,
  .5px .5px 0px orange,
  1px 1px 0px orange,
  1.5px 1.5px 0px orange;
    box-shadow:2px 2px 0px orange;


}


</style>

</head>

<body>
<table class="tabl-1" cellspacing= "0px" cellpadding= "0px" bgcolor= "orange">
<tr height= "5%" bgcolor= "orange"><th class="head">SK CALCULATOR</th></tr>
<form name= "cal">
<tr height= "40%" cellpadding= "0px"><th>

<center><textarea class="val" name= "sd"></textarea><br>
<textarea class="result" name= "sm" >=</textarea></center>

</th></tr>

 <tr height= "52%"><th>

 <table class="num" cellspacing= "0px" bgcolor= "black">
 <tr>
 <th><input type= "button" value= "7" onclick= "cal.sd.value+='7'"></th>
 <th><input type= "button" value= "8" onclick= "cal.sd.value+='8'"></th>
 <th><input type= "button" value= "9" onclick= "cal.sd.value+='9'"></th>
 <th><input type= "button" value= "+" onclick= "cal.sd.value+='+'"></th>
 </tr>

 <tr>
 <th><input type= "button" value= "4" onclick= "cal.sd.value+='4'"></th>
 <th><input type= "button" value= "5" onclick= "cal.sd.value+='5'"></th>
 <th><input type= "button" value= "6" onclick= "cal.sd.value+='6'"></th>
 <th><input type= "button" value= "-" onclick= "cal.sd.value+='-'"></th>
 </tr>

 <tr>
 <th><input type= "button" value= "1" onclick= "cal.sd.value+='1'"></th>
 <th><input type= "button" value= "2" onclick= "cal.sd.value+='2'"></th>
 <th><input type= "button" value= "3" onclick= "cal.sd.value+='3'"></th>
 <th><input type= "button" value= "*" onclick= "cal.sd.value+='*'"></th>
 </tr>

 <tr>
 <th><input type= "button" value= "D" onclick= "cal.sd.value='' "
 onclick= "cal.sm.value='' " ></th>
 <th><input type= "button" value= "0" onclick= "cal.sd.value+='0'"></th>
 <th><input type= "button" value= "=" onclick= "cal.sm.value=eval(cal.sd.value)"></th>
 <th><input type= "button" value= "/" onclick= "cal.sd.value+='/'"></th>
 </tr>








</form>
 </table>

 </th></tr>



</table>
</body>

</html>
SK Calculator
SK CALCULATOR

Read more »