Teman-teman WebHozz kali ini kita akan mencoba membuat sebuah efek kertas terselip dengan menggunakan CSS, kalian sudah siap ya. Oke mari kita coba ya teman-teman.
Langsung saja pertama-tama buatlah kode HTML seperti berikut ini :
<body> <div class="kertas"> <h1>Lorem</h1> <p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p> </div> </body>
Lalu teman-teman, siapkan untuk file CSS, buat seperti berikut ini ya:
body{ background:#5814ac; } .kertas{ background:white; width:400px; margin:20px auto; padding:20px; position:relative; font-family:cambria,serif; box-shadow:0 1px 10px rgba(0,0,0,.3); } .kertas::before, .kertas::after{ background:#d8d8d8; content:""; width:100px; height:50px; position:absolute; top:-25px; box-shadow:0 5px 10px -7px rgba(0,0,0,.3); } .kertas::before{ left:-50px; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .kertas::after{ right:-50px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } /****Tambahkan efek ini untuk membuat efek selotip*****/ /* .kertas::before, .kertas::after{ background:rgba(255,255,255,.5); content:""; width:100px; height:25px; position:absolute; top:-10px; box-shadow:0 5px 10px -7px rgba(0,0,0,.3); } */
Nah itu dia teman-teman, mudah bukan. Berikut ini tampilannya teman-teman:
Nah berikut ini untuk demonya. DEMO