Learn how to create an overlay effect with CSS
Make money for being or staying online/internet.

You will get a $50 starting gift when you join using this code: Exode4LKrbujm1z and link:: GET THE OFFER NOW!!

In this simple article you will learn how to create an overlay effect with CSS.

Overlay means to cover the surface of something with a transparent background. In other words, it is used to set one thing on the top of another.

The overlay makes a web-page attractive, Provides holds extra information for the user to take action and more so it is easy to design.

HTML - Markup
copy

<div class="overlay">
<div class="info">
<div class="close" id="closeOverlay">×</div>
<h2>Oston Code Cypher</h2>
<p>Join me today and get your life time tutorials for FREE.</p>
<button class="btn">Subscribe</button>
</div>
</div>

CSS - Styles

Having only this code targeting the element with the overlay class will create the effect.

copy

.overlay{
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.9);
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:2;
	display:none;
}
	

The rest of the code I wrote was to style the layout or position of the elements I put in the inner div with the class of info.

Tutorial Code
copy
body{
}


.container{
max-width:80%;
margin:0 auto;
margin-top:20px;
}

.overlay{
width:100%;
height:100%;
background-color:rgba(0,0,0,0.9);
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
z-index:2;
display:none;
}

.info{
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
height:100vh;
color:#fff;
opacity:0;
animation: channelInfo 1s ease-in 1.5s;
animation-fill-mode:forwards;
}

.info h2{
margin-bottom:0;
}

.info p{
font-size:20px;
}

.close{
position: absolute;
top:0;
right:0;
margin:20px 20px 0 0;
transform:scale(2);
transition:all 0.6s ease-in;
}

.close:hover{
color:#00796b;
cursor: pointer;
transform: scale(3) rotate(360deg);
}

.btn{
background-color:#00796b;
color:#fff;
padding:10px;
border:0;
border-radius:5px;
box-shadow: -2px 3px 4px rgba(0,0,0,0.5);
cursor: pointer;
transition: background-color 0.5s ease-in-out;
}

.btn:hover{
background-color: tomato;
}

@keyframes channelInfo{
0%{
opacity:0;
}

100%{
opacity:1;
}
}

In this next post, I will add javascript to open and close the overlay.

Save up to 80% with this Domain & Shared Hosting package deal! 80% OFF - GET OFFER NOW

Related Post(s)

» How to center anything on a wepage using CSS

» How To Create A Stacked Gallery Using HTML And CSS Source Code

» How to create Text Animation using HTML and CSS

» Overriding The Default Text Selection Color With CSS

» Learn how to use CSS box shadow property - Source Code

collections_bookmark Category :: Css
date_range Published :: 3 years ago At: 12:03 AM
event_note Detailed Date :: Jun 21st, 2020
person Writer :: Code
  • RECENT POSTS
1 year ago

How to force the browser to cache a page?

There are several ways to force a web browser to cache an HTML page:


1 year ago

How can i cache pages using php?

You can use the output buffering functions in PHP to cache pages. Output buffering allows you to store the output of a PHP script in a buffer, which you can then manipulate before sending it to the client.


1 year ago

PHP explained in a few lines

PHP is a popular programming language that is widely used for web development. It stands for "PHP: Hypertext Preprocessor" and is a server-side scripting language. This means that it is executed on the server, rather than in the user's web browser.


1 year ago

HTML explained in a few lines

HTML, or Hypertext Markup Language, is the standard markup language for creating web pages and web applications. It is used to structure and organize content on the web, and to create the basic structure and layout of a webpage.


1 year ago

CSS explained in a few lines

CSS, or Cascading Style Sheets, is a stylesheet language used for describing the look and formatting of a document written in HTML. CSS is used to control the presentation of multiple web pages at once, making it a crucial tool for web developers and designers.


2 years ago

A JavaScript library for formatting and manipulating numbers - Numeral.js

Check out this lightweight JavaScript library used for formatting and manipulating numbers.


2 years ago

All Countries Drop Down List | HTML Select Country Name

This simple country dropdown list is freely available for you to copy and use in your project forms.


2 years ago

HTML Entities Code Alphabet Discovery Using JavaScript

In this post I will show how writing just a few lines in JavaScript will allow you to render, browse and discover the alphabetical letters using a set of HTML entity codes.


Subscribe
  • ADVERTISEMENT

YOU MAY LIKE THESE POSTS

share