Category: web design

  • Shake Effect on Action Script Using Flash 3.0

    Step 1: Open a new flash file. Choose Window > Properties from the main menu bar to open the PROPERTIES panel. Step 2: Expand the Properties section in the panel and choose the Edit button to enlarge the Document Settings window. Next, set the width to 550 pixels and height…

  • Masking The Images On Action Script Using Flash cs4

    Step1: open a new flash file. Set the width to 465 pixels and the height to 232 pixels. And set frame rate to 24fps.               Step 2: By using the rectangle tool draw a rectangle. And import the image for background (file ->import ->…

  • Lightening And Masking Techniques Using Flash

    Step 1: open a new flash file. Set the width to 500 pixels and height to 300 pixels. Choose window -> properties from main menu bar, the properties panel is displayed. Step 2: choose the Edit button under the properties tab to display the document settings window. Set the width…

  • Flying Birds On Scenery Using Flash Motion Tweening

    Step 1: Open a new flash file. Set the width to 450 pixels and the height to 239 pixels, set movie’s frame rate as 34 from the properties panel and click ok.           Step 2: Set any background color for the document. Step 3: To set…

  • Bulle on Multi-transition Effect in Flash

    Follow the steps to complete the tutorial. 1. Open a new flash file. Choose Window ->Properties from the main menu bar to open the PROPERTIES panel. 2. Expand the Properties section in the panel and choose the Edit… button to enlarge the Document Settings window. Next, set the width to…

  • Smoky Trailer in Flash Action script

    Final Preview: Step-1 Open a new document in flash. Set the stage color as black. Step-2 Create four buttons for smoke colors transformation in Layer-1. Give the instance name for each button. Here  I gave one_btn, two_btn, three_btn and four_btn. Step-3 Type the following Action Script in Layer-2. //import bitmap…

  • Solution for HTML5 Accessibility in IE

    OUTPUT (in IE) AFTER FIXING THE SOLUTION: OUTPUT (in IE) BEFORE FIXING THE SOLUTION: HTML5 CODE: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/HTML" lang="en" xml:lang="en"> <head> <meta charset="utf-8" /> <title>My first HTML5 website</title> </head> <body style="padding-left: 35px;"> <header> Header Tag of HTML5 with <nav><a href="#">&lt;nav&gt;</a> </nav> </header> <article> <section> <h2>Article & section Tag</h2>…

  • Light Bulb Vector Using Illustrator

    Final Preview: Step-1 Draw a bulb shape and fill with yellow color. Step-2 Draw a below like arc at the two edges of the bulb sides and fill it with white and yellow gradient (radial). Step-3 Create a circle fills it with white and yellow radial gradient. Step-4 To give…

  • Photo Sliding Gallery using HTML

    Final Preview: Step:1 Open a new HTML Document in dreamweaver. Step:2 Paste the following code in the HTML Document. <ul id="sliding"> <li><a href="#nogo"> <img src="pic1.jpg"/></a></li> <li><a href="#nogo"> <img src="pic2.jpg"/></a></li> <li><a href="#nogo"> <img src="pic3.jpg"/></a></li> <li><a href="#nogo"> <img src="pic4.jpg"/></a></li> <li><a href="#nogo"> <img src="pic5.jpg"/></a></li> <li><a href="#nogo"> <img src="pic6.jpg"/></a></li> <li><a href="#nogo"> <img src="pic7.jpg"/></a></li> </ul>…

  • CSS Navigation Menu using background positioning

    Home Page About Us Web Design Graphic Designs Contact Us Step-1 Open an html document. Write the following html code inside the body tag: <ul id=”navigation”> <li><a href=”#” id=”home”>Home Page</a></li> <li><a href=”#” id=”about”>About Us</a></li> <li><a href=”#” id=”webdesign”>Web Design</a></li> <li><a href=”#” id=”graphicdesign”>Graphic Designs</a></li> <li><a href=”#” id=”seo”>Search Engine Optimization SEO</a></li> <li><a href=”#”…