Antworten auf deine Fragen:
Neues Thema erstellen

Image Fade

Foos

Member

Hallo,

ich hab ein kleines PRoblem. Und zwar hab ich vor einiger Zeit einen Code installiert, welcher Vorschaubilder transparent darstellt und beim überfahren mit der Maus auf 100% setzt.

Sieht so aus:

Code:
$(document).ready(function(){
                           $(".latest_img").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
                           $(".latest_img").hover(function(){
                           $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
                           },function(){
                           $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
                           });
                           });

$(document).ready(function(){
                           $("#text p").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
                           $("#text p").hover(function(){
                           $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
                           },function(){
                           $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
                                   });
                           });

$(document).ready(function(){
                           $("#div").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
                           $("#div").hover(function(){
                           $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
                           },function(){
                           $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
                                   });
                           });

Und jetzt hätte ich gerne das das umgedreht ist. Also von 100% zu einer Transparent-Darstellung. Einfach 0.3 und 1.0 umdrehen habe ich schon versucht. Das funzt nicht.

Hat jemand von euch ne Ahnung?
 

cebito

undefined

AW: Image Fade

Hast du das so in deinem js stehn?
HTML:
$(document).ready(function(){
    //hier kommen ALLE jQuery-Scripts rein
 });
Sollte nur einmal vorkommen und alles umschließen.

Warum ein vertauschen der Werte nicht funktioniert lässt sich schwer sagen. Hast du denn alle Werte getauscht?

Poste mal:

  1. dein funktionierendes Script
  2. dein geändertes Script
 
Zuletzt bearbeitet:

Foos

Member

AW: Image Fade

ja so wie oben steht das in meinem .js auch drin...

meine bilder werden dann so angesprochen:

Code:
<a href="images/aat.jpg" rel="shadowbox"><img src="images/thumb.jpg" alt="titel" class="latest_img c1" border="0" width="190" height="130" /></a>

Funktioniert auch alles. nur nich andersrum :)
 

cebito

undefined

AW: Image Fade

shit . ich wüsste nich was...

Ich weiß nicht, wie deutlich ich noch werden soll:

Poste mal:

  1. dein funktionierendes Script
  2. dein geändertes Script

Wie soll man sagen, was falsch ist, wenn man nicht sieht, was du gemacht hast?

Und deine aktuelle js funktioniert zwar, ist aber (wie bereits gesagt) auch nicht korrekt:

HTML:
$(document).ready(function(){

   $(".latest_img").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
   $(".latest_img").hover(function(){
   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
   },function(){
   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
   });

   $("#text p").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
   $("#text p").hover(function(){
   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
   },function(){
   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
   });

   $("#div").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
   $("#div").hover(function(){
   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
   },function(){
   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
   });

});

Einmal um alles drum und gut.
 
Bilder bitte hier hochladen und danach über das Bild-Icon (Direktlink vorher kopieren) platzieren.
Antworten auf deine Fragen:
Neues Thema erstellen

Willkommen auf PSD-Tutorials.de

In unseren Foren vernetzt du dich mit anderen Personen, um dich rund um die Themen Fotografie, Grafik, Gestaltung, Bildbearbeitung und 3D auszutauschen. Außerdem schalten wir für dich regelmäßig kostenlose Inhalte frei. Liebe Grüße senden dir die PSD-Gründer Stefan und Matthias Petri aus Waren an der Müritz. Hier erfährst du mehr über uns.

Stefan und Matthias Petri von PSD-Tutorials.de

Nächster neuer Gratisinhalt

03
Stunden
:
:
25
Minuten
:
:
19
Sekunden

Flatrate für Tutorials, Assets, Vorlagen

Zurzeit aktive Besucher

Statistik des Forums

Themen
118.613
Beiträge
1.538.346
Mitglieder
67.524
Neuestes Mitglied
BSKGA
Oben