Jump to content

Animated Icons


rockymtn8iv

Recommended Posts

I can say for certain it's only the one. I asked when I was making the Finger Lakes coin's icon and was told they're not allowed anymore. A good and bad decision, really. Done in moderation they can be cool, but I'd hate to see the icons page turned into a 1998 geocities webpage. :(

Link to comment

I think that 1 is it anymore. Here is a link to a profile that tries to keep up with the coin icons:

 

http://www.geocaching.com/profile/Default....65-596d69515146

 

There's a link floating around somwhere that has every coin icon that is in the database. I have the link on my comp at home not here though.

If you follow through enough links on the Trackable Items page, eventually you'll get to a button that launches this link in a shrunken down window: Big Honkin' List o' Trackable Geocoin Icons

 

Note that this page takes approximately forever to load initially as it downloads thousands of tiny images. :(

Link to comment

I think that 1 is it anymore. Here is a link to a profile that tries to keep up with the coin icons:

 

http://www.geocaching.com/profile/Default....65-596d69515146

 

There's a link floating around somwhere that has every coin icon that is in the database. I have the link on my comp at home not here though.

If you follow through enough links on the Trackable Items page, eventually you'll get to a button that launches this link in a shrunken down window: Big Honkin' List o' Trackable Geocoin Icons

 

Note that this page takes approximately forever to load initially as it downloads thousands of tiny images. :(

 

Yah that's the one! Man imagine if even 1/4 of those were animated, there would have to be some sort of warning on there.

Link to comment

I wouldn't mind the subtle animation as described for the Gas Can geocoin from a few years back. B)

 

Icons that behave like the html "blink" tag should be taken out behind the shed and beaten with a shovel until they stop twitching! :D:(

 

For those trying to get a list of geocoin icons by approximate release order, you need to sort that list by the img id instead of the geocoin name. Here is some sample perl hacked together to generate some shoddy HTML example of what that list would look like:

#!/usr/bin/perl
use strict;
my $infile = "AllGeocoins.html";
my $outfile = "AllGeocoinsSorted.html";
my %imgHash = ();
my @imgList;
my $prefixID;
my $imgID;
my $imgSrc;
my $imgText;
open(INFILE, "<$infile") || die("Could not open geocoin input listing file $infile\n");
open(OUTFILE, ">$outfile") || die("Could not open geocoin output sorted listing file $outfile\n");
while (<INFILE>) {
 if (/<li id="(.*)"><img id="img(\d*)" src="..\/images\/wpttypes\/*(\d*).gif" width="32" height="32" onerror="this.src='..\/images\/wpttypes\/23.gif'" border="0" alt="Geocoin Icon" class="geocoin-icon" \/><span class="geocoin-text">(.*)<\/span><\/li>/) {
$prefixID = $1;
$imgID = $2;
$imgSrc = $3;
$imgText = $4;
$imgHash{$2}{prefixID} = $prefixID;
$imgHash{$2}{imgID} = $imgID;
$imgHash{$2}{imgSrc} = $imgSrc;
$imgHash{$2}{imgText} = $imgText;
 }
}
close(INFILE);
for $imgID (sort { $a <=> $b } keys %imgHash) {
printf OUTFILE "	<li id=\"$imgHash{$imgID}{prefixID}\">$imgHash{$imgID}{prefixID}, img$imgHash{$imgID}{imgID}, $imgHash{$imgID}{imgSrc}.gif: <img id=\"img$imgHash{$imgID}{imgID}\" src=\"http://www.geocaching.com/images/wpttypes/$imgHash{$imgID}{imgSrc}.gif\" width=\"32\" height=\"32\" onerror=\"this.src='http://www.geocaching.com/images/wpttypes/23.gif'\" border=\"0\" alt=\"Geocoin Icon\" class=\"geocoin-icon\" /><span class=\"geocoin-text\">$imgHash{$imgID}{imgText}</span></li>\n";
}
close(OUTFILE);

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...