Css OB
Css OB
Project Report
On
Ms.Jadhav C.P
DEPARTMENT OF INFORMATIONTECHNOLOGY
certificate
PLACE- KORTI,
PANDARPUR-
DATE-
Acknowledgement
I hereby declare that the work presented in this Mini project report entitled,
“Create a simple animation in CSS” in partial fulfillment for the Diploma of "
INFORMATION TECHNOLOGY " in Our extreme gratitude Ms.Jadhav C.P who
guided us throughout the project. Without his willing disposition, spirit of
accommodation, frankness, timely clarification and above all faith in us, this
project could not have been completed in due time.
They can view the result at the same time. Thus the purpose
of the site is to provide a system that saves the efforts
INDEX
1. Introduction 1
2. History 2
3. Properties of animation 3
4. Browser Support 4
6. Conclusion 8
7. Reference 10
1.Introduction
An animation lets an element gradually change from one style to another. You can
change as many CSS properties you want, as many times as you want.
To use CSS animation, you must first specify some keyframes for the animation.
Keyframes hold what styles the element will have at certain times.
An animation lets an element gradually change from one style to another.You can
change as many CSS properties you want, as many times as you want.To use CSS
animation, you must first specify some keyframes for the animation
Keyframes hold what styles the element will have at certain times.
2.History
While the pseudo-class :hover has been used to generate rudimentary animations
for years, extensions of CSS into the realm of animation were minimal until the
late 2000s decade. As early as 2007, WebKit had announced its intent to include
CSS animation, transitions, and transforms as features of WebKit. It also
announced the implementation of both implicit and explicit animation through CSS
in February 2009. CSS animation has also been put forth as a feature of CSS3, the
ongoing draft specification managed by the World Wide Web .
3. Properties of animation
@keyframes
animation-name
animation-duration
animation-delay
animation-iteration-count
animation-direction
animation-timing-function
animation-fill-mode
animation
4.Browser Support
@keyframes example {
from {background-color: red;}
to {background-color: yellow;}
}
</style>
</head>
<body>
<h1>CSS Animation</h1>
<div></div>
</body>
</html>
6.Conclusion