Example code for implementing 3D text hover effect using CSS3

Example code for implementing 3D text hover effect using CSS3

This article introduces the sample code of CSS3 to achieve the effect of 3D text hover change, which is shared with you as follows:

html

<h1 class="hover-text-3d" data-text="w3cbest.com">W3CBEST.COM</h1>

CSS

.hover-text-3d {
    font-size: 7em;
}
.hover-text-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-text-fill-color: #fff;
    text-fill-color: #fff;
}
.hover-text-3d:before {
    position: absolute;
    overflow: hidden;
    width: 0;
    content: attr(data-text);
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    -webkit-text-fill-color: #aaf0d1;
    text-fill-color: #aaf0d1;
    -webkit-text-stroke-width: 2px;
    text-stroke-width: 2px;
    -webkit-text-stroke-color: #aaf0d1;
    text-stroke-color: #aaf0d1;
    -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .8));
    -o-filter:drop-shadow(5px 5px 5px rgba(0, 0, 0, .8));
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .8));
}
.hover-text-3d:hover:before {
    width: 100%;
}

View the effect

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  WML tag summary

>>:  Docker file storage path, modify port mapping operation mode

Recommend

Introduction to the use of MySQL pt-slave-restart tool

Table of contents When setting up a MySQL master-...

Vue implements simple calculator function

This article example shares the specific code of ...

Detailed explanation of Docker container network port configuration process

Exposing network ports In fact, there are two par...

Detailed explanation of incompatible changes in rendering functions in Vue3

Table of contents Rendering API changes Render fu...

Tutorial diagram of installing zabbix2.4 under centos6.5

The fixed IP address of the centos-DVD1 version s...

How to use Vue's idea to encapsulate a Storage

Table of contents background Function Purpose Ide...

Native js canvas to achieve a simple snake

This article shares the specific code of js canva...

Prevent HTML and JSP pages from being cached and re-fetched from the web server

After the user logs out, if the back button on the...

Vue implements a simple shopping cart example

This article example shares the specific code of ...

Implementing a simple calculator with javascript

This article example shares the specific code of ...

Commands to find domain IP address in Linux terminal (five methods)

This tutorial explains how to verify the IP addre...