Skip to main content

Posts

Showing posts from July, 2020

SideBar PLUS Icon with animation

SideBar PLUS Icon with Animation || POP UP icon Box || Icon Interaction in HTML                      Here is the best code for pop up icon box with the animation effect. These icons will be use in the many website for users attraction. Do the code now..! #CODE : --     <!DOCTYPE html> <html>     <head>         <title>Page Title</title>         <style type="text/css">             * {     margin: 0;     padding: 0;     box-sizing: border-box; } body {     display: flex;     justify-content: center;     align-items: center;     min-height: 100vh;     --light-color: #f8f9fd;     background: #FF6347; } .container {     position: relative;     display: flex;     flex-wrap: wrap;     justify-content: space-around;     align-items: center;     width: 200px;     height: 200px;     background: var(--light-color);     box-shadow: inset 6px 6px 10px 0 rgba(0, 0, 0, .2),     inset -6px -6px 10px 0 rgba(255, 255, 255, .5);     border-radius: 15%; } butto

Javascript FireCracker Animation

  || FireCracker Animation Using JavaScript ||  #CODE :                                                                              <!DOCTYPE html> <html> <head> <title>JavaScript FireDesign</title> <style type="text/css"> body{ background: #000; margin: 0; width: 100%; overflow: hidden; } </style> </head> <body> <canvas></canvas> <script type="text/javascript"> var t =0; var c = document.querySelector("canvas"); var $ = c.getContext('2d'); c.width = window.innerWidth; c.height = window.innerHeight; $.fillStyle = 'hsla(0,0%,0%,1)'; window.addEventListener('resize',function(){ c.width = window.innerWidth; c.height= window.innerHeight; },false); function draw(){ $.globalCompositeOperation = 'source-over'; $.fillStyle = 'hsla(0,0%,0%,.1)'; $.fillRect(0,0,c.width,c.height); var foo,i,

SlideShow

Slideshow Change image every 3 seconds: 1 / 5 World Map 2 / 5 PUBG Show 3 / 5 React Logo 4 / 5 Sidebar Icon 5 / 5 Android Logo

Sidebar Icon | The Icon Interaction

 Sidebar icon with animation || Icon interaction HTML  Here is the code for designing an animation of the sidebar icon. This icon is helpful for the use of sidebar menus . With the effect of rounding opening and closing codoblog brings the video of the icon interaction for you. #CODE :        <!DOCTYPE html> <html> <head> <title>Icon menu</title> <style type="text/css"> body{ height: 100vh; display: flex; justify-content: center; align-items: center; margin: 0; font-family: sans-serif; font-weight: bold; flex-direction: column; } p{ font-size: 2.5rem; text-transform: uppercase; } svg{ stroke-linecap: round; stroke-linejoin: round; transition: transform 400ms; cursor: pointer; -webkit-tap-highlight-color:rgba(0,0,0,0); } svg path{ fill: none; stroke: black; stroke-width:2px; transition:stroke-dasharray 400ms,stroke-dashoffset 400ms; } s

Aatmnirbhar Bharat 2020 | आत्मनिर्भर भारत | Bharat Navnirman | best article in marathi

#VocalForLocal   #DigitalIndia     #Swadeshi     #BeIndianBuyIndian   आत्मनिर्भर भारत              निसर्गाकडे लक्ष्य दिले तर एक बाब लक्षात येते कि , एक सजीव प्राणी दुसऱ्या सजीव प्राणी निर्माण करतो , तसेच दुसऱ्या प्राण्यावर अवलंबून असतो नंतर मात्र हा नवीन सजीव आत्मनिर्भर होतो व स्वतंत्र पने जगू लागतो.                     प्राचीन भारतीय समाजव्यवस्थेवर एक नजर टाकल्यास प्रामुख्याने एक बाब  लक्षात येते कि प्राचीन खेडी (छोटे गाव ) हि स्वयंपूर्ण होती. आणि सर्वात महत्वाची गोष्ट हि कि , त्यांच्या सर्व गरजा  ह्या त्यांच्या खेड्यातच पूर्ण व्हायच्या. हि गवे इतरांवर अवलंबून व परावलंबी मुळीच नव्हती . मुळात यालाच आपण आत्मनिर्भरता असे म्हणू शकतो . पण काळाच्या ओघात शासनव्यवस्था बदलत गेली आणि हि स्वयंपूर्ण असलेली खेडी पुढे परावलंबी बनत गेली . यालाच आपण गुलामगिरी म्हणू शकतो , आणि एकदा का आपण गुलाम झालो कि आपली अस्मिता , विद्वत्ता व कचरा यात थोडाही फरक मात्र उरत नाही . जे मालक म्हणेल तेच गुलामला करावं लागते आणि तिथेच आपली प्रगती थांबते . आपल्या देशाच्या इतिहासाचा अभ्यास केला तर , आपण जगाच्या तुलनेत का माग

POP UP | ALERT MESSAGE

 || POP UP MESSAGE BOX || ALERT  MESSAGE BOX || CODE BY CODOBLOG || codoblog giving the code for designing the code for POP UP message Box. This box also helpfull for giving the message of alerting also. Design it and use properly in your websites. This pop up message is so helpful for the alerting users during interacting with our web. So, try to do the code for it, and keep connected with the codoblog.   #CODE -         <!DOCTYPE html> <html> <head>   <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title> Pop up</title>     <link rel="stylesheet">     <script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.2/sweetalert.min.js"></script>     <style type="text/css">     h3{     font-family: lucida Handwriting;     text-align: center;     }     </style> </head> <body>

React LOGO

How to Design React LOGO || React Logo with Animation || Html-Css-Js Here is the code by using we can design the react LOGO with the animation effect.             This logo we can use in our websites. Don't hasitate, Just do the code. And Keep Loving CodoBlog. #CODE <!DOCTYPE html> <html> <head> <title>Logo React</title> <style type="text/css"> body{ margin: 0; padding: 0; overflow: hidden; position: fixed; } #canvas{ background-color: black; } </style> <script type="text/javascript"> "use strict"; var W,H,c,ctx; var circles=[]; const random = (max=1,min=0)=> Math.random()* (max-min)+min; const util={ drawCircle(x,y,r,c){ ctx.beginPath(); ctx.fillStyle = c; ctx.arc(x+W/2, y+H/2,r,0,2*Math.PI); ctx.fill(); ctx.closePath(); }, drawCircleRotate(x,y,r,c,a){ ctx.beginPath(); ctx.save(); ctx.fillStyle =

Digital calender

                     Design A Digital Calender Design a code for accesing and designing calender. #CODE                                                                     <!DOCTYPE html> <html> <head> <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Calender UI</title> <style type="text/css"> @import url('https://fonts.googleapis.com/css?family=Lobster:wght@200;300;400;500;600;700;800;900&display=swap'); *{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Lobster', sans-serif; } body{ display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: black; background-size: cover; background-position: center; } .calender{ position: relative; width: 200px; background:#ffffff; text-align: center;

The PUBG Show

The Pubg Show | Code for Pubg | For the Pubg Lovers.. Hey everyone..! This is the code about the Pubg background and the hover hide animation. You will able to design the code for pubg show. If you are the coder and pubg lover, then you must have to w try to do the code. #CODE : <!DOCTYPE html> <html> <head> <title>For PUBG Lovers</title> <script src="https://code.jquery.com/jquery-3.4.1.js"></script> <script type="text/javascript"> window.addEventListener("load",function(){ const loader = document.querySelector(".loader"); loader.className += " hidden"; }); $(document).ready(function(){ $("body").show(); $(".screen").hide(); $(document).mousemove(function(e){ $(".screen").show() $(".circle").css('background','radial-gradient(circle at '+e.pageX+'px '+e.pageY+'px,transparent,#000 40%)') })

Android Logo Design

                    Android Logo Design By Html-Css                                                                                 Here is the code for designing the logo of Android. Design the logo by using programming language like Html and Css. You can simply design the logo, just small code for it. Don't hasitate and start to write it.. CODE :                 <!DOCTYPE html> <html> <head> <title>Android logo</title> <link href="https://fonts.googleapis.com/css2?family=Piedra&display=swap" rel="stylesheet"> <style type="text/css"> body{ background-color: black; } h4{ text-align: center; color: #00FF00; font-family: 'Piedra',cursive; font-size: 25px; } .A{ position: absolute; top: 200px; left: 125px; height: 45px; width: 90px; border-radius: 0px 0px 90px 90px; transform:rotate(180deg); background: #00FF00; } .B{ po