1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Modding Post Your PC Case (Modded)

Discussion in 'Modding' started by MayHem45, 2 Feb 2002.

  1. Hi-TEK

    Hi-TEK What's a Dremel?

    Joined:
    7 Sep 2001
    Posts:
    201
    Likes Received:
    0
    Here was the last machine that I worked on and I'm already in the middle of the next mod. Koolvin already pimped this one on the main page so here goes:

    [​IMG]

    More details from start to finish can be found here.
     
  2. Mayze

    Mayze PH34R my ROBO Squirrel!

    Joined:
    28 Jan 2002
    Posts:
    586
    Likes Received:
    0
  3. nikon

    nikon What's a Dremel?

    Joined:
    11 Jan 2002
    Posts:
    129
    Likes Received:
    0
    cool site

    where'd you get that java/html/whatever the hell interface from??
     
    Last edited: 5 Feb 2002
  4. stefan

    stefan What's a Dremel?

    Joined:
    27 Jan 2002
    Posts:
    19
    Likes Received:
    0
    my first case...wall mounted!

    [​IMG]
    [​IMG]
     
    Last edited: 5 Feb 2002
  5. Mayze

    Mayze PH34R my ROBO Squirrel!

    Joined:
    28 Jan 2002
    Posts:
    586
    Likes Received:
    0
    Where'd i get it??? I made it :p also, the main site www.mayze.net i made also in adobe photoshop 6 & adobe image ready
     
  6. MayHem45

    MayHem45 What's a Dremel?

    Joined:
    2 Feb 2002
    Posts:
    18
    Likes Received:
    0
    Keep Postin!
     
  7. Geek

    Geek What's a Dremel?

    Joined:
    21 Nov 2001
    Posts:
    332
    Likes Received:
    0
    Stefan - like the wall mount idea, bro. It's awesome for people who don't have desk space. Now if only I could get mine up on the wall... :--)

    Gordon
     
  8. Mayze

    Mayze PH34R my ROBO Squirrel!

    Joined:
    28 Jan 2002
    Posts:
    586
    Likes Received:
    0
    my fiance suggested that i build a shelf for my pc, so i can have it off the desk, we're really screwed for desk space :p
     
  9. Hi-TEK

    Hi-TEK What's a Dremel?

    Joined:
    7 Sep 2001
    Posts:
    201
    Likes Received:
    0
    Stefan is that tin foil mounted behind the wall mount PC?
     
  10. stefan

    stefan What's a Dremel?

    Joined:
    27 Jan 2002
    Posts:
    19
    Likes Received:
    0
    It's some sort of plastic...my father is a photographer and it was in his collection of backgrounds. He has a huge sheet of it and i cut off a section. Makes the blue an clear look a helluva lot better! I was worried it would look trashy but it doesn't. :cool:
     
  11. Phire

    Phire Performance-PCs.com

    Joined:
    11 Jan 2002
    Posts:
    1,441
    Likes Received:
    0
    Ah ah ah...tis not all yours...lol I know b/c I used some of the same coding!


    I love this script!

    <script>

    /*
    Gradual-Highlight Image Script II-
    By J. Mark Birenbaum (birenbau@ugrad.cs.ualberta.ca)
    Permission granted to Dynamicdrive.com to feature script in archive
    For full source to script, visit http://dynamicdrive.com
    */

    nereidFadeObjects = new Object();
    nereidFadeTimers = new Object();

    /* object - image to be faded (actual object, not name);
    * destop - destination transparency level (ie 80, for mostly solid)
    * rate - time in milliseconds between trasparency changes (best under 100)
    * delta - amount of change each time (ie 5, for 5% change in transparency)
    */

    function nereidFade(object, destOp, rate, delta){
    if (!document.all)
    return
    if (object != "[object]"){ //do this so I can take a string too
    setTimeout("nereidFade("+object+","+destOp+","+rate+","+delta+")",0);
    return;
    }

    clearTimeout(nereidFadeTimers[object.sourceIndex]);

    diff = destOp-object.filters.alpha.opacity;
    direction = 1;
    if (object.filters.alpha.opacity > destOp){
    direction = -1;
    }
    delta=Math.min(direction*diff,delta);
    object.filters.alpha.opacity+=direction*delta;

    if (object.filters.alpha.opacity != destOp){
    nereidFadeObjects[object.sourceIndex]=object;
    nereidFadeTimers[object.sourceIndex]=setTimeout("nereidFade(nereidFadeObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
    }
    }

    </script>
     
  12. Mayze

    Mayze PH34R my ROBO Squirrel!

    Joined:
    28 Jan 2002
    Posts:
    586
    Likes Received:
    0
    oh the mouse over fade, i was talking about the interface :p
     
  13. MayHem45

    MayHem45 What's a Dremel?

    Joined:
    2 Feb 2002
    Posts:
    18
    Likes Received:
    0
  14. MayHem45

    MayHem45 What's a Dremel?

    Joined:
    2 Feb 2002
    Posts:
    18
    Likes Received:
    0

Share This Page