Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

Why do some gifs look bad in Firefox?

  • 3 απαντήσεις
  • 4 έχουν αυτό το πρόβλημα
  • 9 προβολές
  • Τελευταία απάντηση από cor-el

more options

[[A side-by-side comparision (photo), showing the difference between how the image looks in Firefox vs Internet Explorer.|http://i.imgur.com/dtLN8.jpg]]

Can someone please help me? Its embarrassing the way this gif looks on my tumblr blog.

Thanks!

[[A side-by-side comparision (photo), showing the difference between how the image looks in Firefox vs Internet Explorer.|http://i.imgur.com/dtLN8.jpg]] Can someone please help me? Its embarrassing the way this gif looks on my tumblr blog. Thanks!

Επιλεγμένη λύση

That image has an opacity specified that IE might not support:

img {-webkit-transition: opacity 0.55s linear; opacity: 0.65;} 
img:hover {-webkit-transition: opacity 0.85s linear; opacity: 0.95;}

There are also a lot of images on that page that are scaled up or down to 450px and Firefox doesn't (always) do a good job in scaling images (Bug 486918), so it is always best to avoid that to get the best results.


@namespace url("http://www.w3.org/1999/xhtml");
@-moz-document domain(that-somebody.tumblr.com){
 img { opacity:1 !important; }
}
Ανάγνωση απάντησης σε πλαίσιο 👍 0

Όλες οι απαντήσεις (3)

more options

Επιλεγμένη λύση

That image has an opacity specified that IE might not support:

img {-webkit-transition: opacity 0.55s linear; opacity: 0.65;} 
img:hover {-webkit-transition: opacity 0.85s linear; opacity: 0.95;}

There are also a lot of images on that page that are scaled up or down to 450px and Firefox doesn't (always) do a good job in scaling images (Bug 486918), so it is always best to avoid that to get the best results.


@namespace url("http://www.w3.org/1999/xhtml");
@-moz-document domain(that-somebody.tumblr.com){
 img { opacity:1 !important; }
}

Τροποποιήθηκε στις από το χρήστη cor-el

more options

Thanks for responding! I guess I'll try to recreate the gif and fix the scaling issue.

more options

You're welcome

That GIF image should be OK as I'm not seeing any issues with it on Linux and it isn't scaled (85x85).
Maybe only remove or override the CSS rule and set the opacity of that image to 1 as that isn't needed for that image.


.portrait { opacity: 1; }