Image
The Compelling Reasons to Learn Web Design In an era dominated by the digital realm, the ability to craft visually appealing and functional websites is a valuable skill that transcends industries. Learning web design is not just about creating aesthetically pleasing pages; it opens doors to a world of creativity and opportunities. In this blog, we'll delve into the compelling reasons why aspiring individuals should consider learning web design and how it can pave the way for personal and professional growth. Express Your Creativity: Web design is an art form that allows you to express your creativity in a digital space. From choosing color palettes to selecting fonts and arranging elements on a page, web designers have the power to create visually stunning and unique experiences. Learning web design provides a canvas for self-expression, enabling you to bring your ideas to life and leave a lasting impression on users. Meet the Demands of the Digital Age: The digital landscape is

                                    ANIMATION

ANIMATION : Animation is a method in which image and picture manipulated and moving images.
we use a animation word and give a animation name and time period we can see in code animation is 
most important role play in website /web application like popup images and moving images/content
we can say a animation
we can customize image height/width and direction and animation time. if we want a continue a animation we have a use infinite word in css 
it is a basic animation code :

<!DOCTYPE html>
<html>
<head>
    <title>animation</title>
    <style>
        img{animation: 2s red; margin-top: 10px; margin-left: 300px; width: 60%;}

        @keyframes red{

0%{height: 150px; width: 200px}
50%{height: 120px; width: 300px;}
80%{height: 350px; width: 400px;}
100%{height: 450px; width: 600px;}
}
    </style>
</head>
<body>
    <div class="box1">
        <img src="1.jpg">
    </div>

</body>
</html> 

is outpu snapshot








red is animation name  and animation time 1s and animation time period infinite


 please try this code and share this blog and comment
any one intrested in networking please click on
best institute for web developing and graphic design please click on 
 

Comments

Popular posts from this blog

what is margin and padding