 |
 |
Just Updated My Site From the Ground Up
|
 |
|
 |
|
Registered User
Join Date: Jul 2001
Location: Orange County, CA
Status:
Offline
|
|
http://alphasubzero949.cjb.net (also in sig)
I decided to go for the clean look. Any thoughts? Notice anything wrong or jerky? I viewed it under MSIE 5.2, Chimera, and OmniWeb.
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Mar 2002
Location: Clogland
Status:
Offline
|
|
The logo misses it's bottom, it reads RFYOND instead of BEYOND.
Nice feel to the site though.
(I.E. 5.1 for Mac)
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Mar 2001
Location: somewhere in ohio
Status:
Offline
|
|
Loks good under Safari 
|
|
|
| |
|
|
|
 |
|
 |
|
Registered User
Join Date: Jul 2001
Location: Orange County, CA
Status:
Offline
|
|
Originally posted by skalie:
The logo misses it's bottom, it reads RFYOND instead of BEYOND.
Nice feel to the site though.
(I.E. 5.1 for Mac)
Hmmm...looks fine over here.
Are you using 800x600? That could be why.
|
|
|
| |
|
|
|
 |
|
 |
|
Fresh-Faced Recruit
Join Date: Aug 2002
Status:
Offline
|
|
Really nice work, IMO. I should get around to learning flash, as I assume that's what you're using. Also, I like the 'minimalism' of the design. Nothing slapping you in the face. However. I think the flash intro could do with a little audio. I wouldn't exactly know what, but ... Also, maybe you should trim it down just a bit. It is very nice, but 'in der Beschränkerung zeigt sich der Meister' (something like 'true mastery is shown in brevity').
|
|
|
| |
|
|
|
 |
|
 |
|
Registered User
Join Date: Jul 2001
Location: Orange County, CA
Status:
Offline
|
|
The audio sample there now is a snippet from DJ Quicksilver. It's called "Escape Mix." 
|
|
|
| |
|
|
|
 |
|
 |
|
Fresh-Faced Recruit
Join Date: Aug 2002
Status:
Offline
|
|
Well, apparently I had the volume all down when I visited the site, but there actually IS audio. What with beschränkerung and all, wouldn't it be possible to have a little higher framerate when moving the text-art around.
|
|
|
| |
|
|
|
 |
|
 |
|
Registered User
Join Date: Jul 2001
Location: Orange County, CA
Status:
Offline
|
|
Good point. I'll try playing around with it. However, the animation sequence runs pretty fast on some computers I've tried it on, and dog slow on others. 
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Mar 2002
Location: Clogland
Status:
Offline
|
|
Originally posted by Subzero Diesel949:
Hmmm...looks fine over here.
Are you using 800x600? That could be why.
Happens when the browser window isn't maximised, a scroll bar appears and the top logo shortens.

|
|
|
| |
|
|
|
 |
|
 |
|
Moderator Emeritus 
Join Date: Mar 2001
Location: Austin, MN, USA
Status:
Offline
|
|
I recommend you use javascript on the left frame to preload the images. It's a bit strange to have them load at the time of the mouse over.
|
|
|
| |
|
|
|
 |
|
 |
|
Registered User
Join Date: Jul 2001
Location: Orange County, CA
Status:
Offline
|
|
I haven't been able to figure out a script to do that. Any advice?
|
|
|
| |
|
|
|
 |
|
 |
|
Moderator Emeritus 
Join Date: Mar 2001
Location: Austin, MN, USA
Status:
Offline
|
|
Sure, no problem. You can pre-load the images into a JavaScript array and then call that instead of the actual images. You could call the actual images as well, because since they are in the array, they have been cached by the browser. Either way works.
For example, this is one possible way:
Code:
<font size="2"><script language = "JavaScript">
// populate the array with the number of images you will use
image = new Array(3);
// this isn't necessary, but you have to do it to each entry in the array
// before assigning it an image, so it's easiest to automate it with this loop
for (i = 0; i < image.length; i++) // loop through the array and
image[i] = new Image(); // add new images to it.
// here are 3 images I'm preloading.
// Notice I didn't preload myimage.gif, we do that below
image[0].src = "/images/myimage2.gif";
image[1].src = "/images/myimage3.gif";
image[2].src = "/images/myimage4.gif";
</script>
<!--Here is an example of a link. myimage.gif is loaded in the img tag-->
<a href="link.html" onMouseOver="picture.src = image[0].src;" onMouseOut="picture.src = '/images/myimage.gif';">
<img src="/images/myimage.gif" name="picture">
</a>
<!--Here's another example. Notice I'm simply not calling the array anymore.
This should work too because it should read the image out of the cache.-->
<a href="link.html" onMouseOver="picture2.src = '/images/myimage2.gif';" onMouseOut="picture2.src = '/images/myimage.gif';">
<img src="/images/myimage.gif" name="picture2">
</a></font>
(Last edited by Xeo; Jan 16, 2003 at 02:06 AM.
)
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Jan 2003
Location: 127.0.0.1
Status:
Offline
|
|
Thanks...trying it out now.
|
|
|
| |
|
|
|
 |
 |
|
 |
|
|
|
|
|

|
|
 |
Forum Rules
|
 |
 |
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
|
HTML code is Off
|
|
|
|
|
|
 |
 |
 |
 |
|
 |
|