Hallo ihr,
ich habe folgendes Problem: wenn ich mehr als ein youtube Video auf einer Seite einbette, sind beide Videos identisch, obwohl sich der Code voneinander unterscheidet.
Das ist der Code:
HTML
<!DOCTYPE HTML>
<head>
<title>Wolfstatze</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="Bilder/Favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Libre+Franklin:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="js/cycle2.js"></script>
<script>
$(function() {
var pull = $('#pull');
menu = $('nav ul');
menuHeight = menu.height();
$(pull).on('click', function(e) {
e.preventDefault();
menu.slideToggle();
});
$(window).resize(function(){
var w = $(window).width();
if(w > 320 && menu.is(':hidden')) {
menu.removeAttr('style');
}
});
});
</script>
</head>
<body class="impressum">
<header>
<div class="header">
<img class="logo" src="Bilder/Logo.png">
<nav class="clearfix">
<ul class="clearfix">
<li><a href="index.html">Start</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projekte.html">Projekte</a></li>
<li><a href="kontakt.php">Kontakt</a></li>
<li><a href="impressum.html" >Impressum</a></li>
</ul>
<a href="#" id="pull">Menü</a>
</nav></div>
</header>
<figure>
<img class="erstes" src="Bilder/wolf_start.jpg">
<img class="kleines" src="Bilder/Wolf_klein.jpg">
</figure>
<iframe src="https://www.youtube.com/embed/WupaScRv7Mg?rel=0" frameborder="0" allowfullscreen></iframe>
<iframe src="https://www.youtube.com/embed/CdX4lHkaRFM?rel=0" frameborder="0" allowfullscreen></iframe>
</body>
</html>
Alles anzeigen
Nur der Code von den iframes:
HTML
<iframe src="https://www.youtube.com/embed/WupaScRv7Mg?rel=0" frameborder="0" allowfullscreen></iframe>
<iframe src="https://www.youtube.com/embed/CdX4lHkaRFM?rel=0" frameborder="0" allowfullscreen></iframe>
was muss geändert werden, dass das nicht passiert? Klasse ist es nicht.. Weiß jemand was?
Vielen Dank schonmal
LG Sun