Asked By
Any Hill
30 points
N/A
Posted on - 09/27/2012
Hi,
There are some instances that we need to download some templates from the internet just to compare and get some ideas from our own work. I just want to ask you about where to get a free download for html pictures effects code? Sample codes will be the best help that you can ever give me, I am searching over the internet but there are some which is not for free. I need your help.
Where to get a free download for html pictures effects code?
Adding effect on image on a webpage is a good practice. There are many type of effect that may be applied to enhance the look of a website as for example moving on the page, blinking, rolling and so on. Here is a sample html general code:
<img src="" style="" align="" />
You will get details from http://www.webcosmoforums.com/html-dhtml/6240-image-effects.html
Where to get a free download for html pictures effects code?
Hi Any,
Honestly there’s nothing much you can do with HTML if you want to have good photo effects. Try using CSS instead or you can mix both. CSS makes everything so dynamic and you can do a number of effects using CSS. One example is on how to make one image transparent using CSS.
img {
-moz-opacity: 0.5;
Filter: alpha .(opacity=50);
}
I also suggest that you should try Photoshop for photo effects. It’s the easiest and fastest way to create high end effects. You can download the images on your website, edit it in Photoshop and upload your photos in Picasa or Photobucket Create Your Way.
To put the new image back in your code, you need to copy the link of your edited image from where you uploaded it. Replace the old link (unedited image) of your image in existing code with the new one.
The positioning of your new image can be edited via HTML or CSS.
Regards,
Taylor