Posts

Showing posts from July, 2019
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

advance animation

Image
                                    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 advance animation code : <html> <head> <style> body{overflow-x:hidden; background-image: url("2.jpg");} #box{width:100px; height:350px; background:black; padding:20px; } .box2{width:15px; height:350px; background:black; padding:10px; margin-left:50px;   } .circle{width:100px; height:100px;  border-radius:50%;background:red; float:left; margin:3px;  animation:4s red infinite;} .circle2{width:100px; height:100px;  border-radius:50%;background:yellow
Image
                                    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">