In this example, I will show you to create shuffled paper shadow effect using pure CSS3, without using images as background.
I used transform property to rotate and display as shuffled paper. I applied the effect using the “paper” css. It has the background with border and shadow property. Two box-shadow are defined for the page such as shading and drop shadow.
I applied the html shadow effect with different rotation angle using the pseudo elements and gets interesting effects.
HTML code:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
.papers, .papers:before, .papers:after {
border: 1px solid #ccc;
box-shadow: inset 0 0 30px rgba(0,0,0,0.1), 1px 1px 3px rgba(0,0,0,0.2);
}
.papers {
position: relative;
width: 50%;
padding: 2em;
margin: 50px auto;
-webkit-transform: rotateZ(2.5deg);
-o-transform: rotate(2.5deg);
transform: rotateZ(2.5deg);
z-index: -1;
color: #4d90fe;
}
.papers:before, .papers:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.papers:after {
-webkit-transform: rotateZ(-2.5deg);
-o-transform: rotate(-2.5deg);
transform: rotateZ(-2.5deg);
}
</style>
</head>
<body>
<h1 style="color: #0480d1; text-align: center">Css3-shuffle paper effects</h1>
<div class="papers">
<p>
In this example, I will show you tocreate shuffled paper shadow effect using pure CSS3, without using images as background.
I used transform property to rotate anddisplay as shuffled paper. I applied the effect using the “paper” css. It hasthe background with border and shadow property. Two box-shadow are defined for the page such as shading and drop shadow.
</p>
</div>
</body>
</html>
Output:
Post your comments / questions
Recent Article
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
- Unicode error 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
- Could not find the 'angular-devkit/build-angular:dev-server' builder's node package | Angular Error
Related Article