Posts

Showing posts with the label 3d

3d Dice Roll Animation

Image
This Great Code Creates a Fun Interactive 3d Cube     *Featured Code submitted and Created By  Amir Ahmad . HTML with CSS <!doctype html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>3dDice</title>     <style> body {     background-color:#0dd;     }     #view{     width:200px;     height:200px;     margin:100px;     perspective:600px;     }     #dice{     width:200px;     height:200px;     position:relative;     transform-style:preserve-3d;     transition: transform 1s;     }     #btnFront:checked ~ #view>#dice{     transform:rotateY(360deg) !important;     }     #btnRight:checked ~ #view>#dice{ ...

3d Glowing Text HTML & CSS

Image
Create Awesome Glowing 3d Text with this Fun HTML & CSS Code *Featured Code submitted and Created By  Amir Ahmad . HTML <!doctype html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>3d Text</title>     <link rel="stylesheet" href="styles.css">      </head> <body>     <div id="view">         <h1>LOVE FOR ALL</h1>         <h1>LOVE FOR ALL</h1>         <h1>LOVE FOR ALL</h1>         <h1>LOVE FOR ALL</h1>         <h1>LOVE FOR ALL</h1>         <h1>LOVE FOR ALL</h1>         <h1>LOVE FOR ALL</h1>         <h1>LOVE FOR ALL</h1>       ...