Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. "use strict";
  2. (function(window,document,$){
  3. $(function(){
  4. // Erzeuge das Objekt (Aufgabenstellung)
  5. var bilder = {
  6. 0: {
  7. src: "haus-im-himmel.jpg",
  8. alt: "Holzhütte vor wolkigem Himmel"
  9. },
  10. 1: {
  11. src: "ziemlich-beste-freunde.jpg",
  12. alt: "Ziemlich beste Freunde"
  13. },
  14. 2: {
  15. src: "briefkaesten.jpg",
  16. alt: "Amerikanische Briefkästen auf dem Land"
  17. }
  18. };
  19. var $img = $("#key-visual"); // hol dir das <img>
  20. console.log($img); // Test
  21. var zufall = rand(0,2); // erzeuge eine Zufallszahl (lib wurde eingebunden)
  22. // manipuliere die Attribute
  23. $img.attr({
  24. src: "lib/img/ziemlich_beste_freunde/" + bilder[zufall].src,
  25. alt: bilder[zufall].alt,
  26. title: bilder[zufall].alt
  27. });
  28.  
  29. });
  30. } (window,document,jQuery) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement