Beiträge von leomai
-
-
Gib mir n paar minuten
Welche auflösung hat dein video?
-
womit bearbeitest du denn dein bild?
und was genau tust du?
und was genau willst du das wir tun?
-
heey kann nur vermuten wie es geht *hust* premiere nutzer *hust*
wenn du ein leicht transparentes bild haben willst, dann musst dass klar noch tun aber platzier das bild doch einfach in einer video spur über dem hauptvideo
-
[FONT="]Halli hallo ich arbeite gerade an der mobilen Version einer website, problem ich bekomm das mit dem meta viweport nicht hin, sodass die Seite immer richtig angezeigt wird [/FONT]
[FONT="]der quell[/FONT]
[FONT="]<!doctype html>[/FONT]
[FONT="]<html>[/FONT]
[FONT="]<head>[/FONT]
[FONT="]<meta charset="utf-8">[/FONT][FONT="]<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">[/FONT]
[FONT="]der quellcode:[/FONT]
[FONT="]<title>Unbenanntes Dokument</title>[/FONT]
[FONT="]<link href="thaistyle.css" rel="stylesheet" type="text/css">[/FONT]
[FONT="]</head>[/FONT][FONT="]<body>[/FONT]
[FONT="]<div id="wrapper">[/FONT]
[FONT="]<header></header>[/FONT][FONT="]<div class="dropdown">[/FONT]
[FONT="]<button onclick="myFunction()" class="dropbtn">Menü</button>[/FONT]
[FONT="]<div id="myDropdown" class="dropdown-content">[/FONT]
[FONT="]<a href="#">Über uns</a>[/FONT]
[FONT="]<a href="#">Massagen</a>[/FONT]
[FONT="]<a href="#">Preise</a>[/FONT]
[FONT="]<a href="#">Gutscheine</a>[/FONT]
[FONT="]<a href="#">Konatakt</a>[/FONT]
[FONT="]<a href="#">Impressum</a>[/FONT]
[FONT="]</div>[/FONT]
[FONT="]</div>[/FONT]
[FONT="]<script>[/FONT]
[FONT="]function myFunction() {[/FONT]
[FONT="]document.getElementById("myDropdown").classList.toggle("show");[/FONT]
[FONT="]}[/FONT][FONT="]window.onclick = function(event) {[/FONT]
[FONT="]if (!event.target.matches('.dropbtn')) {[/FONT][FONT="]var dropdowns = document.getElementsByClassName("dropdown-content");[/FONT]
[FONT="]var i;[/FONT]
[FONT="]for (i = 0; i < dropdowns.length; i++) {[/FONT]
[FONT="]var openDropdown = dropdowns[/FONT];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>
<div id="adresse"></div>
<section></section>
<footer></footer>
</div>
</body>
</html>mein css
@charset "utf-8";
header{
width: 320px;
height:100px;
background-color: brown;
flex-wrap: wrap;
}#wrapper{background-color: #AA9820;
width:320px;
}.dropbtn {
background-color: #B7A52D;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}.dropbtn:hover, .dropbtn:focus {
background-color: #AA9820;
}.dropdown {
position: relative;
display: inline-block;
}.dropdown-content {
display: none;
position: absolute;
background-color: #B7A52D;
min-width: 320px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}.dropdown-content a:hover {background-color: #f1f1f1}
.show {display:block;}
section{
width: 320px;
height:1200px;
background-color: #076338}footer{
width:320px;
}könnt ihr mir helfen?