Blog
Simple typing Effect using css
This is one of the simple css trick and this is used to display flash messages in websites. This typing effects will attract the customers to display the important messages in websites.
Styles:
body{
background: #F3F7FF;
padding-top: 10px;
}
background: #F3F7FF;
padding-top: 10px;
}
p{
color: #3D3F46;
font-size: 20px;
margin: 10px 0 0 10px;
white-space: nowrap;
overflow: hidden;
width: 100%;
animation: type 10s steps(60, end);
}
p:nth-child(2){
animation: type2 8s steps(60, end);
}
p a{
color: #3D3F46;
text-decoration: none;
}
span{
animation: blink 1s infinite;
}
@keyframes type{
from { width: 0; }
}
@keyframes type2{
0%{width: 0;}
50%{width: 0;}
100%{ width: 100; }
}
@keyframes blink{
to{opacity: .0;}
}
Html
<p>Hi Welcome to Sanwebcorner.com, This is the sample text for typing effect using css <span>|</span></p>
Related Posts
How to Create a Background Video for Header
A background video in the header section can instantly elevate your website’s visual appeal. It helps capture attention, communicate yo...
Background Animation Using Javascript
Today we are going to see different type of animation background. This concept working javascript.Background Animation working fu...
Responsive Table Using Pure Css
Hi all, Going to see how to create responsive table using pure css. This method very easy to understand. This table simple create...
Simple Reservation Form using Html
Now, Going to see how to create simple reservation form using html and css code. This form use hotel , Restaurant etc. Simp...
Form Flipping Animation
Hi all, Now we are going to share Form flipping animation using css. This concept flipping into two form one login and signup for...
Animation Buy Now Button Using Css
We are going to see how to create simple and easy way to create animation buy now button. Animated buy now button using html and ...
Infinite Slider Animation – Css
Now, We are going to see infinite slider image animation using css. The infinite slider are auto slide image. Very easy to unders...
Simple Foodcard Menu Image scrolling using css
This concept going to create simple foodcard menu scrolling using html and css. This card about the food details show into users....
Scrolling Image With Bottom Using Css
Now we are going to see scrolling image with bottom to top using css. This concept coding are very easy to use. Single image are ...
Product Card Item Using Html
We would like to share this concept for Ecommerce website product card items using html and css, javascript. Product card is impo...
How to Create Simple Email Form Using Html and Css
Today we are going to see how to create simple email form using html and css. This concept very useful to beginner of email...
How to Create Quick Enquiry Form
Today we are going to see how to create quick enquiry form in website. This Concept very useful to you. Use this enquiry form on ...