I have been fiddling with web pae and I really need some help so for those java programmers can you give a hint or two!
How do you make html animation and color the background?
1] You can create animation in HTML
Dreamweaver is able to create animation through clever use of JavaScript. Unlike Flash, which creates animation along Vector paths and timelines, JavaScript creates animation by plotting the location of an object in conjunction with time between each plot
Use dreamweaver to try this concept.
ch out the link
http://www.sitepoint.com/article/animati...
=================
2] The HTML to change the background color is simple:
Syntax
%26lt;TAGNAME bgcolor="value"%26gt;
chk out following examples:
%26lt;table bgcolor="lime" border="1"%26gt;%26lt;tr%26gt;
%26lt;td%26gt;A lime colored table background using color names.%26lt;/td%26gt;
%26lt;/tr%26gt;%26lt;/table%26gt;
-------------------------
%26lt;table bgcolor="#ff0000" border="1"%26gt;%26lt;tr%26gt;
%26lt;td%26gt;A red colored table background using hexadecimal values "#FF0000".%26lt;/td%26gt;
%26lt;/tr%26gt;%26lt;/table%26gt;
-------------------------
%26lt;table bgcolor="rgb(0, 0, 255)" border="1"%26gt;%26lt;tr%26gt;
%26lt;td%26gt;A blue colored table background using RGB values "rgb(0, 0, 255)".%26lt;/td%26gt;
%26lt;/tr%26gt;%26lt;/table%26gt;
-------------------------
With CSS you are able to set the background color or image of any CSS element. chk out couple examples of CSS backgrounds
http://www.tizag.com/cssT/background.php
Reply:Well for starters java may be the way you need to go or another animation tool such as Flash. As regular HTML coding will not do what you want, as the code will link to executable but is not executable itself.
As for BG Color codes for Back Ground colors there a lots: go here: http://www.geocities.com/siliconvalley/n...
Reply:use %26lt;body bgcolor="#333333"%26gt; code. U can change the digits I put here to change color.
Reply:Animations are generally done using Flash these days, but you could also use javascript, applets, or even your own custom plugin (not recommended). There are other obscure ways as well.
garden ridge
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment