Jump to content

Red flashing Alert Text on top of the Startpage


Meeko
Go to solution Solved by Meeko,

Recommended Posts

  • Solution

Code for Flashing:

/*Flashing*/
@-webkit-keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}
@keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}

 

Red Flashing Text Top of the Startpage:

/*Alert Text*/
.verticalSection.section0:before {
    content: "Your Text";
      left: 35vw;
    position: relative;
    font-size: 200%;
font-weight: bold;
   color: red;
-webkit-animation: flash linear 2s infinite;
	animation: flash linear 2s infinite; }
}

 

Edited by Soldize
  • Like 1
  • Agree 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...