Posts

Black Show Content

Image
<!DOCTYPE html> <html> <head> <title> </title> </head> <body> <section class =" banner "> </section> <div class =" content "> <h2> CSS Clip Path Mousemove Effects </h2> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been ...

Scroll

Image
<!DOCTYPE html> <html> <head> <title> Scroll </title> </head> <body> <div id =" progressbar "> </div> <section> <h2> Creative Page Scroll Progress Bar </h2> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standa...

Mouse BG

Image
<!DOCTYPE html> <html> <head> <title> </title> </head> <body> <div class =" container "> <div class =" column active "> <div class =" bg "> <img src =" https://images.pexels.com/photos/237018/pexels-photo-237018.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260 "> </div> </div> <div class =" column "> <div class =" bg "> <img src =" https://cdn.pixabay.com/photo/2015/12/01/20/28/fall-1072821_1280.jpg "> </div> </div> <div class =" column "> <div class =" bg "> <img src =" https://cdn.pixabay.com/photo/2015/06/19/21/24/the-road-815297_1280.jpg "> </div> <div class =" column "> <div class =" bg "> <img src =" h...

Video And CSS Effects

Image
<!DOCTYPE html> <html> <head> <title> </title> </head> <body> <video src =" particles.mp4 " muted ="" autoplay =""> </video> <h2> <span> P </span> articles Di <span> st </span> ortion Effects </h2> </body> </html> <style type =" text/css "> *{ margin: 0px; padding: 0px; font-family: 'Poppins', sans-serif;; } body{ display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #000; } h2{ position: relative; margin: 20px 0 0; font-size: 4em; font-weight: 900; color: #fff; margin: 20px 0 0; z-index: 1; overflow: hidden; } h2:before{ content: ''; position: absolute; left: 120%; width: 120%; height: 100%; background: linear-gradient(90deg, transparent 0%, #000 5%, #000 100%); animation: animate 5.5s linear forwards; animation-delay: 2s...

Click Open Link

Image
<!DOCTYPE html> <html lang="xyz"> <head> <title>Click Link</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> </head> <body> <div class="title"> <br><br><br><br> <div class="email-wrapper"> <div class="email"> <div class="header"> <div class="button button1"></div> <div class="button button2"></div> <div class="button button3"></div> </div> <p>Check Out The goeey Button</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliqui...

Mobile Portfolio

Image
<!DOCTYPE html> <html> <head> <title> </title> <link rel =" stylesheet " href =" https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css "> </head> <body> <div class =" carousel "> <div class =" carousel-item "> <img src =" img.jpg "> </div> <div class =" carousel-item "> <img src =" img.jpg "> </div> <div class =" carousel-item "> <img src =" img.jpg "> </div> <div class =" carousel-item "> <img src =" img.jpg "> </div> <div class =" carousel-item "> <img src =" img.jpg "> </div> </div> <img src =" mobile.png " class =" mobile ...

Loader Blue

Image
<!DOCTYPE html> <html> <head> <title> Loader </title> </head> <body> <svg> <circle cx =" 70 " cy =" 70 " r =" 70 "> </circle> </svg> </body> </html> <style type =" text/css "> *{ margin: 0px; padding: 0px; } body{ display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #05091f; } svg{ position: relative; width: 150px; height: 150px; animation: rotate 2s linear infinite; } svg circle{ width: 100%; height: 100%; fill: none; stroke-width:10; stroke: #00a1ff; stroke-linecap: round; transform: translate(5px, 5px); stroke-dasharray: 440; stroke-dashoffset:440; animation: animate 4s linear infinite; } @keyframes rotate{ 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } } @keyframes animate{ 0%,100%{ stroke-dashoffset:440; } 50%{ str...