Build anything
Build Project Quickly which you want, earnestly.
Learning to program is like learning a new language; it
opens up a world
of endless possibilities,
where you can create, innovate, and solve problems with just your imagination and a
few lines of code.
Project title : 3d text Effect
A 3D text effect is a visual representation of text that appears to have depth, dimension, and perspective, giving the i.... Read more
Uploaded: 2024-05-27 13:48:27
Technology uses
Discription of 3d text Effect
A 3D text effect is a visual representation of text that appears to have depth, dimension, and perspective, giving the illusion of being three-dimensional. This effect is often achieved using various design tools, software, and techniques, such as Photoshop, Illustrator, or CSS. Types of 3D Text Effects: There are several types of 3D text effects, including: Perspective: Text that appears to recede into the distance, creating a sense of depth. Shading: Text with shading effects, such as highlights and shadows, to create a 3D appearance. Gradient: Text with gradient effects, such as color transitions, to create a sense of depth. Animation: Text that moves or changes shape to create a 3D effect. Isometric: Text that appears to be viewed from a 45-degree angle, creating a 3D effect.
Steps to run the project on your system.
Without Download project file you can build, by Copy the below code.
All code for this project
All code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>3D Text Effect</title> <style> body{ background-color: black; padding:0px; margin:0px; width:100vw; height:100vh; display: flex; justify-content: center; align-items: center; } .text-container { perspective: 1000px; margin: 50px auto; width:400px; text-align: center; } .text { font-size:60px; color: #fff; background-color: rgba(0, 128, 128, 0.247); box-shadow:3px 3px 300px 40px teal; position: relative; display: inline-block; transform-style: preserve-3d; transition: transform 0.5s; } .text:hover { transform: rotateY(30deg); } .text::before { content: attr(data-text); position: absolute; top: 0; left: 0; color:aqua; transform: translateZ(8px); } .text::after { content: attr(data-text); position: absolute; top: 0; left: 0; color:purple; transform: translateZ(-8px); } </style> </head> <body> <div class="text-container"> <div class="text" data-text="3D Lightedaim">3D Lightedaim</div> </div> </body> </html>