Antworten auf deine Fragen:
Neues Thema erstellen

Drop out Menü Code gesucht

Triggertrix

Filmwechsler

Hallo,

da ich nicht zu den Code-Verstehern gehöre, habe ich gegoogelt und das hier gefunden:


allerdings ist der Prozess stark reglementiert und ich darf z.b. nur 20 Zeichen für die URL nutzen, ansonsten wird´s sauteuer.

Ansonsten ist das aber exakt das was ich suche, kennt jemand eine andere Seite / Quelle, die ich Handhaben kann und mir so ein Ergebnis liefert?

Besten Dank im Voraus

P.S. auf der Site (Link) kann man sehen was ich meine, steht am Anfang oben "Menu1, Menu2....."
 

soulstyle

Mein Stift tut weh !

AW: Drop out Menü Code gesucht

//Hab was schönes für dich eben abgeschrieben.
//Da kannste soviel verändern wie du willst;)
//das DIV ist die Drop-Down-Anzeige

<td width="100">
//muss nicht
<div id="LinksLayer" style="position:absolute; left:211px; top:23px; width:100px; height:85px; z-index:2;
background-color:#CCCCCC; layer-background-color:#CCCCCC;
visibility:hidden"
>

<a href="#">DHTML</a><br>
<a href="#">Link2</a><br>
<a href="#">Link3</a><br>
</div>

<a href="#" onClick="zeigeLayer('LinksLayer');" onDblClick="verbergeLayer('LinksLayer');">Links</a> //Wenn man nun auf LINKS klickt, dann erscheint das Sub- bzw. Drop-Down-Menu
</td> //muss nicht

JAVASCRIPT DATEI:
function zeigeLayer(layerid) {
var layer = document.getElementById(layerid);
layer.style.visibility = "visible";
}

function verbergeLayer(layerid) {
var layer = document.getElementById(layerid);
layer.style.visibility = "hidden";
}
 

Triggertrix

Filmwechsler

AW: Drop out Menü Code gesucht

also ich kann´s ja nicht lassen und versuch mich durch zu beissen. Habe jetzt angefangen Code manuell zu editieren.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<meta name="Generator" content="iWeb 3.0.1" />
<meta name="iWeb-Build" content="local-build-20100216" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta name="viewport" content="width=920" />
<title>kuenstlerpool</title>
<link rel="stylesheet" type="text/css" media="screen,print" href="kuenstlerpool_files/kuenstlerpool.css" />
<!--[if lt IE 8]><link rel='stylesheet' type='text/css' media='screen,print' href='kuenstlerpool_files/kuenstlerpoolIE.css'/><![endif]-->
<!--[if gte IE 8]><link rel='stylesheet' type='text/css' media='screen,print' href='Media/IE8.css'/><![endif]-->
<script type="text/javascript" src="Scripts/iWebSite.js"></script>
<script type="text/javascript" src="kuenstlerpool_files/kuenstlerpool.js"></script>
<!– Beginning of Drop Down Code–>

<style type=”text/css”>

#dropmenudiv{

position:absolute;

border:1px solid black;

border-bottom-width: 0;

font:normal 12px Verdana;

line-height:18px;

z-index:100;

}

#dropmenudiv a{

width: 100%;

display: block;

text-indent: 3px;

border-bottom: 1px solid black;

padding: 1px 0;

text-decoration: none;

font-weight: bold;

}

#dropmenudiv a:hover{ /*hover background color*/

background-color: yellow;

}

</style>

<script type=”text/javascript”>

//Contents for menu 1

var Ueber Uns=new Array()

Ueber_Uns[0]=’<a href=”http://www.stein-gut.com/wesentlich_sinnvoller/Maxime.html“onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()">Maxime</a>’

Ueber_Uns[1]=’<a href=”http://www.stein-gut.com/wesentlich_sinnvoller/unsere_arbeit.html“onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()">Unsere Arbeit</a>’

Ueber_Uns[2]=’<a href=”http://www.stein-gut.com/wesentlich_sinnvoller/persoenliches.html“onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()">Persoenliches</a>’

//Contents for menu 2

var menu2=new Array()

menu2[0]=’<a href=” to first site here.html“>Site 1</a>’

menu2[1]=’<a href=” to Second Site Here.html“>Site 2</a>’

menu2[2]=’<a href=” to third site here.html“>Site 3</a>’

var menuwidth=’165px’ //default menu width

var menubgcolor=’lightgrey‘ //menu bgcolor

var disappeardelay=250 //menu disappear speed onMouseout (in miliseconds)

var hidemenu_onclick=”yes” //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all

var ns6=document.getElementById&&!document.all

if (ie4||ns6)

document.write(‘<div id=”dropmenudiv” style=”visibility:hidden;width:’+menuwidth+’;background-color:’+menubgcolor+’” onMouseover=”clearhidemenu()” onMouseout=”dynamichide(event)”></div>’)

function getposOffset(what, offsettype){

var totaloffset=(offsettype==”left”)? what.offsetLeft : what.offsetTop;

var parentEl=what.offsetParent;

while (parentEl!=null){

totaloffset=(offsettype==”left”)? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;

parentEl=parentEl.offsetParent;

}

return totaloffset;

}

function showhide(obj, e, visible, hidden, menuwidth){

if (ie4||ns6)

dropmenuobj.style.left=dropmenuobj.style.top=”-500px”

if (menuwidth!=”"){

dropmenuobj.widthobj=dropmenuobj.style

dropmenuobj.widthobj.width=menuwidth

}

if (e.type==”click” && obj.visibility==hidden || e.type==”mouseover”)

obj.visibility=visible

else if (e.type==”click”)

obj.visibility=hidden

}

function iecompattest(){

return (document.compatMode && document.compatMode!=”BackCompat”)? document.documentElement : document.body

}

function clearbrowseredge(obj, whichedge){

var edgeoffset=0

if (whichedge==”rightedge”){

var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15

dropmenuobj.contentmeasure=dropmenuobj.offsetWidth

if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)

edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth

}

else{

var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset

var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18

dropmenuobj.contentmeasure=dropmenuobj.offsetHeight

if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?

edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight

if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?

edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge

}

}

return edgeoffset

}

function populatemenu(what){

if (ie4||ns6)

dropmenuobj.innerHTML=what.join(“”)

}

function dropdownmenu(obj, e, menucontents, menuwidth){

if (window.event) event.cancelBubble=true

else if (e.stopPropagation) e.stopPropagation()

clearhidemenu()

dropmenuobj=document.getElementById? document.getElementById(“dropmenudiv”) : dropmenudiv

populatemenu(menucontents)

if (ie4||ns6){

showhide(dropmenuobj.style, e, “visible”, “hidden”, menuwidth)

dropmenuobj.x=getposOffset(obj, “left”)

dropmenuobj.y=getposOffset(obj, “top”)

dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, “rightedge”)+”px”

dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, “bottomedge”)+obj.offsetHeight+”px”

}

return clickreturnvalue()

}

function clickreturnvalue(){

if (ie4||ns6) return false

else return true

}

function contains_ns6(a, b) {

while (b.parentNode)

if ((b = b.parentNode) == a)

return true;

return false;

}

function dynamichide(e){

if (ie4&&!dropmenuobj.contains(e.toElement))

delayhidemenu()

else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))

delayhidemenu()

}

function hidemenu(e){

if (typeof dropmenuobj!=”undefined”){

if (ie4||ns6)

dropmenuobj.style.visibility=”hidden”

}

}

function delayhidemenu(){

if (ie4||ns6)

delayhide=setTimeout(“hidemenu()”,disappeardelay)

}

function clearhidemenu(){

if (typeof delayhide!=”undefined”)

clearTimeout(delayhide)

}

if (hidemenu_onclick==”yes”)

document.onclick=hidemenu

</script>

<!– End of Drop Down Code–>
</head>
<body style="background: rgb(82, 7, 0); margin: 0pt; " onload="onPageLoad();">
<div style="text-align: center; ">
<div style="margin-bottom: 40px; margin-left: auto; margin-right: auto; margin-top: 40px; overflow: hidden; position: relative; word-wrap: break-word; text-align: left; width: 920px; " id="body_content">
<div style="background: transparent url(kuenstlerpool_files/backgroundimage_1.jpg) no-repeat scroll center center; width: 920px; ">
<div style="float: left; margin-left: 0px; position: relative; width: 920px; z-index: 0; " id="nav_layer">
<div style="height: 0px; line-height: 0px; " class="bumper">*</div>
<div style="clear: both; height: 0px; line-height: 0px; " class="spacer">*</div>
</div>
<div style="height: 130px; margin-left: 0px; position: relative; width: 920px; z-index: 10; " id="header_layer">
<div style="height: 0px; line-height: 0px; " class="bumper">*</div>
<div style="height: 78px; width: 177px; height: 78px; left: 734px; position: absolute; top: 65px; width: 177px; z-index: 1; " class="tinyText style_SkipStroke">
<img src="kuenstlerpool_files/SteinGut_Logo_final.png" alt="" style="border: none; height: 78px; width: 177px; " />
</div>



<div style="height: 71px; width: 922px; height: 71px; left: 0px; position: absolute; top: -24px; width: 922px; z-index: 1; " class="tinyText style_SkipStroke_1">
<img src="kuenstlerpool_files/Ginkgo_Rinde.jpg" alt="" style="border: none; height: 72px; width: 922px; " />
</div>
</div>
<div style="margin-left: 0px; position: relative; width: 920px; z-index: 5; " id="body_layer">
<div style="height: 0px; line-height: 0px; " class="bumper">*</div>
<div style="height: 450px; line-height: 450px; " class="spacer">*</div>
</div>
<div style="height: 40px; margin-left: 0px; position: relative; width: 920px; z-index: 15; " id="footer_layer">
<div style="height: 0px; line-height: 0px; " class="bumper">*</div>
<div class="tinyText" style="height: 24px; left: 54px; position: absolute; top: 8px; width: 70px; z-index: 1; ">
<img usemap="#map1" id="shapeimage_1" src="kuenstlerpool_files/shapeimage_1.png" style="border: none; height: 35px; left: -3px; position: absolute; top: -3px; width: 76px; z-index: 1; " alt="Impressum" title="" /><map name="map1" id="map1"><area href="Impressum.html" title="Impressum.html" alt="Impressum.html" coords="3, 3, 73, 27" /></map>
</div>



<div style="height: 7px; width: 905px; height: 1px; left: 15px; position: absolute; top: -4px; width: 905px; z-index: 1; " class="tinyText">
<div style="position: relative; width: 905px; ">
<img src="kuenstlerpool_files/shapeimage_2.png" alt="" style="height: 7px; left: 0px; margin-left: 2px; margin-top: -3px; position: absolute; top: 0px; width: 901px; " />
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>


@soulstyle: Danke für den Code, aber ohne Bedienungsanleitung, krieg ich da nix hin, Du musst mir sagen wo was hin gesetzt werden muss, bin für jeden Tip der mich weiterbringt dankbar.... ich sehe nur noch kryptische Zeichen vor mir :(
 

Triggertrix

Filmwechsler

AW: Drop out Menü Code gesucht

Ach so, ich war übrigens schon einen Schritt weiter, wenn ich hier: CSS Menu Generator
ein Menü erstelle und den Code runterlade, füge ich ihn (so wie ich es verstanden habe) über
HTML:
</head>
ein, dann kommt aber nur eine sehr merkwürdig anmutende Struktur heraus.... verdammt..

sieht so aus:


Anbei der Code von der Seite wenn ich ihn eingefügt habe.

HTML:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
  <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    
    <meta name="Generator" content="iWeb 3.0.1" />
    <meta name="iWeb-Build" content="local-build-20100216" />
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
    <meta name="viewport" content="width=920" />
    <title>kuenstlerpool</title>
    <link rel="stylesheet" type="text/css" media="screen,print" href="kuenstlerpool_files/kuenstlerpool.css" />
    <!--[if lt IE 8]><link rel='stylesheet' type='text/css' media='screen,print' href='kuenstlerpool_files/kuenstlerpoolIE.css'/><![endif]-->
    <!--[if gte IE 8]><link rel='stylesheet' type='text/css' media='screen,print' href='Media/IE8.css'/><![endif]-->
    <script type="text/javascript" src="Scripts/iWebSite.js"></script>
    <script type="text/javascript" src="kuenstlerpool_files/kuenstlerpool.js"></script>
  <!– Beginning of Drop Down Code–>

<style type=”text/css”>
<style media="all" type="text/css">@import "/menu/menu_style.css";</style>
<div>
<ul class="menu">
<li class="top"><a href="" target="_self" class="top_link"><span>Ueber Uns</span></a>
<ul class="sub">
<li><a href="http://www.stein-gut.com/wesentlich_sinnvoller/Maxime.html" target="_self">Maxime</a></li>
<li><a href="http://www.stein-gut.com/wesentlich_sinnvoller/unsere_arbeit.html" target="_self">Unsere Arbeit</a></li>
<li><a href="http://www.stein-gut.com/wesentlich_sinnvoller/persoenliches.html" target="_self">Persoenliches</a></li>
</ul>
</li>
<li class="top"><a href="" target="_self" class="top_link"><span>Projekte</span></a>
</li>
<li class="top"><a href="" target="_self" class="top_link"><span>Kontakt</span></a>
</li>
<li class="top"><a href="" target="_self" class="top_link"><span>Download</span></a>
</li>
<li class="top"><a href="" target="_self" class="top_link"><span>Impressum</span></a>
</li>
</ul>
</div>
  </head>
  <body style="background: rgb(82, 7, 0); margin: 0pt; " onload="onPageLoad();">
    <div style="text-align: center; ">
      <div style="margin-bottom: 40px; margin-left: auto; margin-right: auto; margin-top: 40px; overflow: hidden; position: relative; word-wrap: break-word;  text-align: left; width: 920px; " id="body_content">
        <div style="background: transparent url(kuenstlerpool_files/backgroundimage_1.jpg) no-repeat scroll center center; width: 920px; ">
          <div style="float: left; margin-left: 0px; position: relative; width: 920px; z-index: 0; " id="nav_layer">
            <div style="height: 0px; line-height: 0px; " class="bumper">*</div>
            <div style="clear: both; height: 0px; line-height: 0px; " class="spacer">*</div>
          </div>
          <div style="height: 130px; margin-left: 0px; position: relative; width: 920px; z-index: 10; " id="header_layer">
            <div style="height: 0px; line-height: 0px; " class="bumper">*</div>
            <div style="height: 78px; width: 177px;  height: 78px; left: 734px; position: absolute; top: 65px; width: 177px; z-index: 1; " class="tinyText style_SkipStroke">
              <img src="kuenstlerpool_files/SteinGut_Logo_final.png" alt="" style="border: none; height: 78px; width: 177px; " />
            </div>
            


            <div style="height: 71px; width: 922px;  height: 71px; left: 0px; position: absolute; top: -24px; width: 922px; z-index: 1; " class="tinyText style_SkipStroke_1">
              <img src="kuenstlerpool_files/Ginkgo_Rinde.jpg" alt="" style="border: none; height: 72px; width: 922px; " />
            </div>
          </div>
          <div style="margin-left: 0px; position: relative; width: 920px; z-index: 5; " id="body_layer">
            <div style="height: 0px; line-height: 0px; " class="bumper">*</div>
            <div style="height: 450px; line-height: 450px; " class="spacer">*</div>
          </div>
          <div style="height: 40px; margin-left: 0px; position: relative; width: 920px; z-index: 15; " id="footer_layer">
            <div style="height: 0px; line-height: 0px; " class="bumper">*</div>
            <div class="tinyText" style="height: 24px; left: 54px; position: absolute; top: 8px; width: 70px; z-index: 1; ">
              <img usemap="#map1" id="shapeimage_1" src="kuenstlerpool_files/shapeimage_1.png" style="border: none; height: 35px; left: -3px; position: absolute; top: -3px; width: 76px; z-index: 1; " alt="Impressum" title="" /><map name="map1" id="map1"><area href="Impressum.html" title="Impressum.html" alt="Impressum.html" coords="3, 3, 73, 27" /></map>
            </div>
            


            <div style="height: 7px; width: 905px;  height: 1px; left: 15px; position: absolute; top: -4px; width: 905px; z-index: 1; " class="tinyText">
              <div style="position: relative; width: 905px; ">
                <img src="kuenstlerpool_files/shapeimage_2.png" alt="" style="height: 7px; left: 0px; margin-left: 2px; margin-top: -3px; position: absolute; top: 0px; width: 901px; " />
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>
 
Zuletzt bearbeitet:

soulstyle

Mein Stift tut weh !

AW: Drop out Menü Code gesucht

ich hoffe das hilft dir:

Hab nen Zip Ordner hochgeladen, musste nur auspacken und die .html ausführen...
Ich denke mal du kriegst den Code auf deine Seite angepasst ;)
 
O

overtop

Guest

AW: Drop out Menü Code gesucht

Hi

Steht in der HTML datei:

in den header
also noch vor dem </head>

folgendes einfügen:

<script language="javascript" src="Layer.js"></script>

und die src="DEINEN PFAD ZUR Layer.js EINGEBEN"

Hoffe das hilft.

Galaktische
 
O

overtop

Guest

AW: Drop out Menü Code gesucht

Grundsärzlich ja.

achte auf die Groß-Kleinschreibung des Dateinamens.

Oder hast du den Quelltext schon in dein iWeb html eingebaut ?
 

Triggertrix

Filmwechsler

AW: Drop out Menü Code gesucht



Oder hast du den Quelltext schon in dein iWeb html eingebaut ?

habe es versucht, aber das Ergebnis ist eher ernüchternd... s. Link o.

habe die beiden Files .html + .js in das Oberste Verzeichnis des Servers gelegt, den Code eingepastet und.... nun ja...
 
Zuletzt bearbeitet:

soulstyle

Mein Stift tut weh !

AW: Drop out Menü Code gesucht

Der UEBER UNS Link MUSS <a href="#" onClick="zeigeLayer('UeberUnsLayer');" onDblClick="verbergeLayer('UeberUnsLayer');">Ueber Uns</a> heißen !!

sonst schickt der dich jedes mal auf ne neue Seite wenn du druff klickelst
 

Triggertrix

Filmwechsler

AW: Drop out Menü Code gesucht

sonst schickt der dich jedes mal auf ne neue Seite wenn du druff klickelst
ok, hab ich geändert, das Drop out kommt jetzt für ne Millisec. raus, bevor ich dann (leider immer noch) auf der HTML Seite lande :(

btw. kann ich da nicht sagen, wenn Maus drüber fährt, lass Untermenü rausrutschen? Bei den online Generatoren ging das.
Und wo müsste ich die eigentlichen Links eintragen? also das sind ja logiscger weise Unterseiten, da muss dann doch so was wie <a href=http://www.xxxxxxx rein, oder? An welche Stellen (also kann ich dann ja einzeln editieren) muss der Verweis gesetzt werden? Die Überpunkte sollen ja bis auf das "Mouseover" (nenns mal so) nix weiter machen.

btw. dicken Dank erst mal an dieser Stelle, hatte ich glaube ich noch nicht gesagt ;)
 

soulstyle

Mein Stift tut weh !

AW: Drop out Menü Code gesucht

klar geht das ^^

hier der Code:

Layer.js:

Code:
var timeout    = 100;
var closetimer    = 0;
var ddmenuitem    = 0;
function mopen(id)
{    
    mcancelclosetime();
    if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
    ddmenuitem = document.getElementById(id);
    ddmenuitem.style.visibility = 'visible';
}

function mclose()
{
    if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}

function mclosetime()
{
    closetimer = window.setTimeout(mclose, timeout);
}

function mcancelclosetime()
{
    if(closetimer)
    {
        window.clearTimeout(closetimer);
        closetimer = null;
    }
}
document.onclick = mclose;

und die passende HTML:

HTML:
<div id="Header"></div><br>
<div id="Navigation">
    <a href="index2.php">Startseite</a> | 
    <a href="about.php">&Uuml;ber uns</a> | 
    <a href="portfolio.php">Portfolio</a> | 
    <a href="#"  onMouseOver="mopen('m1')" onMouseOut="mclosetime()">Coding</a> | 
    <a href="contact.php">Kontakt</a>
</div>
<div id="m1" style="visibility:hidden;" onMouseOver="mcancelclosetime()" onMouseOut="mclosetime()">    
    <img src="Bilder/navi_arrow.gif">
          <a href="HTML.php">//HTML</a> | 
          <a href="PHP.php">//PHP</a> | 
          <a href="CSS.php">//CSS</a> | 
          <a href="JSCRIPT.php">//JAVASCRIPT</a>
</div>

wird einbischen anders aussehen, weil ich das aus meiner Page gezogen hab
musste nur noch die Inhalte ändern.
 

Triggertrix

Filmwechsler

AW: Drop out Menü Code gesucht

das in dem Code .php auftaucht, heisst nix? weil ich habe keine PHP oder MySQL unterstützung..... will ja nicht komplett durchdrehen ;)
 
O

overtop

Guest

AW: Drop out Menü Code gesucht

Schau noch mal in deinem <body> nach dem
<a href="#" onClick="zeigeLayer('UeberUnsLayer');" onDblClick="verbergeLayer('UeberUnsLayer');">Ueber Uns</a>

bei dir sieht es so verkehrt aus:

also die reihenfolge ist anders ....
 

Triggertrix

Filmwechsler

AW: Drop out Menü Code gesucht

ich fühle mich jetzt gerade etwas überfordert....

also noch mal Link :

Da hab ich jetzt den Code (den zuletzt geposteten) von Soulstyle rein geschrieben..
Das Ergebnis ist das gleiche, kein Mouseover, keine "Ich bleibe auf der Seite und folge nur dem Link"
Irgendwie fühle ich mich gerade etwas doof und unfähig bei diesem Thema....
 

soulstyle

Mein Stift tut weh !

AW: Drop out Menü Code gesucht

mach mal das target:_top beim <a...> weg
und füg den code ein, wo du klicken musst, der hat ja immerhin funktioniert xD
 
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

Neueste Themen & Antworten

Flatrate für Tutorials, Assets, Vorlagen

Zurzeit aktive Besucher

Statistik des Forums

Themen
118.565
Beiträge
1.538.067
Mitglieder
67.488
Neuestes Mitglied
Andrew56524
Oben