A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

Thomas' Ip Detecter

1.3k views · started by Elliot ·
#1
Thomas' Ip Detector
My newest website is a easy ip detector that uses Java and HTML.
My goal was to make a website like Ip Chicken but with a smooth simplistic design.


ip.geekinblog.com

I noticed that I misspelled "detector" when the screenshot was taken, I have already fixed it.

#2
Try using something like

-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;

Doesn't work in IE (or Chrome last time I checked,) but it works in almost every other browser.

It's just faster than using images.
#3
Chris wrote:
Try using something like

-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;

Doesn't work in IE (or Chrome last time I checked,) but it works in almost every other browser.

It's just faster than using images.


Thanks, I tested it on IE and it passed my speed test (if it takes longer than 2 Sec). It might just be IE 6, or 7. Here is a list of browsers I test on.

Chrome - Passed
Firefox - Passed
Safari - Passed
Opera - Passed
IE - Passed
#4
Thomas wrote:
Thanks, I tested it on IE and it passed my speed test (if it takes longer than 2 Sec). It might just be IE 6, or 7. Here is a list of browsers I test on.

Chrome - Passed
Firefox - Passed
Safari - Passed
Opera - Passed
IE - Passed


Well it's not going to be a difference of much but.

4 images vs. CSS standardized code.

You should know the winner.

But I think if the performance is ok with you to just keep the images until IE starts to support border-radius (Might happen in the next 18 years)
#5
Chris wrote:
Well it's not going to be a difference of much but.

4 images vs. CSS standardized code.

You should know the winner.

But I think if the performance is ok with you to just keep the images until IE starts to support border-radius (Might happen in the next 18 years)


Yea, when I do website with more than 6 images then a usually work harder to optimize it as much as I can. But this is just a simple website so I decided to leave it like it was.
#6
Thomas wrote:
Yea, when I do website with more than 6 images then a usually work harder to optimize it as much as I can. But this is just a simple website so I decided to leave it like it was.


;P, yeah I was messing around with browser_cap.ini (PHP: get_browser - Manual) it's really cool if you every take a look at it.
#7
Very simple but nice :P
#8
Looks cool. You could use photoshop to create some nice interface design for it :P.
#9
Are you using Java to get their IP? You can do this easily via PHP.
<?php echo $_SERVER['REMOTE_ADDR']; ?>