First venture into php too! yippie! There's no content really but that'll come after i finalize the template.
So what do you guys think? I'm going for the minimalistic style this time around.
Posted 18 August 2001 - 04:20 PM
First venture into php too! yippie! There's no content really but that'll come after i finalize the template.
So what do you guys think? I'm going for the minimalistic style this time around.
Posted 18 August 2001 - 04:40 PM
Posted 21 August 2001 - 04:06 PM
like i told ya, ricey, the site looks cool. i like the green color and the minimalist graphics approach, my favorite kind of design. but no slacking off now, okay? i wanna see something in that portfolio toot sweet!!!!!
:p
Posted 04 September 2001 - 02:54 PM
I hate the Dreamweaver rollover code though. Slow as ####.
Here's some code I wrote, really fast and easily customizable. It works with Internet Explorer, Netscape, Opera, Mozilla and others.
<script language="Javascript"> loadimg = new MakeArray(5) function MakeArray(n) function over(imgname){ //
// Begin Javascript Rollovers
//make sure this number ^ is greater than
// the number of images to preload.
//
// list all the images you want to be preloaded
//
loadimg[1].src = "images/first.gif"
loadimg[2].src = "images/first_on.gif"
loadimg[3].src = "images/second.gif"
loadimg[4].src = "images/second_on.gif"
{
this.length = n
for (var ii = 1; ii<=n; ii++)
{
this[ii] = new Image()
}
return this
}
// you can change the
// "images/" + imgname + ".gif"
// and
// "images/" + imgname + "_on.gif"
// to match your image naming method.
//
document.images[(imgname)].src="images/" + imgname + ".gif";
}
function out(imgname){
document.images[(imgname)].src="images/" + imgname + "_on.gif";
}
// end
</script>
The links look something like this then...
<a href="first.shtml" onmouseover="over('first');" onmouseout="out('first');"><img src="images/first.gif" width="125" height="26" alt="First Image" border="0" name="first"></a>
