Skip to main content

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%)') }) }); </script> <style type="text/css"> body{ margin: 0; padding: 0; background-color: black; width: 100%; height: 100%; } .screen{ position: relative; height: 100vh; background:url( "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTU-KMyzAVPj0L6JmzfwWqhU3M1eWHOWR2gj-mQhVVVPKQ-BIML"); background-size: 100%; background-repeat: no-repeat; } .circle{ position: absolute; width: 100%; height: 100%; } .loader{ position: fixed; width: 100%; height: 100%; z-index: 99; display: flex; background-color: #fff; justify-content: center; align-items: center; } .loader.hidden{ animation: fadeOut 1.5s; animation-fill-mode: forwards; } @keyframes fadeOut{ 100%{ opacity: 0; visibility: hidden; } } #text{ margin: 80px; font-weight: bolder; color: #173945; font-size: 50px; text-align: center; text-transform: uppercase; } </style> </head> <body onclick="pubgsong()"> <audio id="music" autoplay> <source src= "https://drive.google.com/uc?id=171npf_S1MHsaqXJJwA5AjSICENu94FT6" type="audio/mp3"> </audio> <script type="text/javascript"> var music = document.getElementById("music"); function pubgsong() { music.play(); } </script> <div class="loader"> <p id="text">Loading...</p> </div> <div class="screen"> <div class="circle"></div> </div> </body> </html>



#OUTPUT :









Comments

The Most Populer

The Bubble Perspective

  The Bubble Perspective By CodoBlog                           Here is the bubble perspective video by codoblog. By using the HTML-CSS-JavaScript           we developed a code. In this code you you will teach how to design the animation in the                  canvas like bubbles flowing. Try out this code and explore your knowledge.         CODE -                    <html> <head> <meta charset="utf-8"> <style type="text/css"> body{ margin: 0; padding: 0; background-color: #000; } </style> <script type="text/javascript"> let c,ctx,w,h let frameTime=0,prevTime=null let redrawElapsed=0 let animationScale=2 let redrawDuration = 5 let newCircleDuration = 0 let dots=[] ...

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-dashoffs...