new design for my website… tried to stay simple/corporate/with a very little tough of grunge… let me know what u guys think… (i know the content on the site sucks…lol…but i’ll improve on that eventually… also if you check the most recent project link… the home page for that site isnt up yet)…
I like it looks very coperate feel to it the only things I would change is the text it just doesn’t look right on that page also the design should be centered it looks very unbalanced to have the top and bottom go 100% width across the screen than the content barley go 40% just looks weird to me other than those 2 things it is a solid site nice job
I like it, it’s smooth with a nice choice of colors and shapes. Perhaps the navigation could use a little hinting. I was able to navigate it fine, but a pontential client may be lost as for what to do. Sometimes with the left navigation it looks a bit off. Just the way after it drops down, it looks badly centered or something. It looks almost a necessary evil though, in a way I like it looking a little off there. It draws my eye to that section of the site more. I kinda agree with VDaminator, it looks a little unbalanced. Maybe you just need a little something working more into the bottom part of the site.
kool…thanx guys …i appreciate the feedback …i will have to do something with that bottom section (gotta think about how i can bring it alive)… there still a few things for me to work on … but thanx so far…will work on the changes…
Hi,
In addition to the comments above I noticed in your portfolio section when your web thumbnails bounce, I get the feeling that the thumbnail doesn’t quite fit in the space you’ve provided for it. I would fix that. It’s a cool looking effect though. How do you actualyl make the bounce? I’ve always been curious how people do that.
apply this code to your movie clip and give your movie clip the instance name (for ex. below the movie clips instance name is box_mc)…
box (mx.transitions.easing.Back.easeOut);
function box(easeType){
var begin = -70;
var end = 0;
var time = 50;
var mc = box_mc;
boxTween = new mx.transitions.Tween(mc,"_x",easeType,begin,end,time);
}
different effects you can give your mc are;
box (mx.transitions.easing.Back.easeInOut);
box (mx.transitions.easing.Bounce.easeOut);
box (mx.transitions.easing.Bounce.easeIn);
box (mx.transitions.easing.Bounce.easeInOut);
box (mx.transitions.easing.Elastic.easeOut);
there’s more but those are the ones i use often…
(mc,"_x",easeType,begin,end,time);
in the line of code above you tell flash what direction your movie clip will bounce by changes the “_x” to “_y” …
Very cool. I will give it a try, thanks!
whoa whoa whoa, this is incredible… hahaha im such a n00b.
:hat:
here where i learned to do it…
http://www.actionscript.org/tutorials/advanced/Tween-Easing_Classes_Documented/index.shtml