ForumübersichtPHP & MySQL

box --> *wusch* - Seite 1

Einloggen
Benutzername:
Passwort:

Passwort vergessen?
Kostenlos
Anmelden
Geschlossen
AutorText


lucas
Super-Moderator



Punkte: 6229
hi

ich suche ein Script das wen man einen Link anklickt, eine Box oder ähnliches von außen (Box außerhalb des Bildschirms) sich nach innen bewegt

wenn ihr mir weiterhelfen könnt bitte antworten

mfg lucas



ntmb
Admin



Punkte: 13700
Hi,

könntest du deine Frage vielleicht etwas genauer Ausrichten?

Könnte es sein, das du sowas wie ein Frame-Layer suchst?

mfg Eugen

Der freundliche Admin aus der Nachbarschaft
Lachecke.de - Dein täglicher Lacher im Internet
Listrank.de - Die ultimative Topliste nach Themen


lucas
Super-Moderator



Punkte: 6229
hab da was gefunden:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<style>

#menuShow{
background-color: #000000;
padding: 13px;
font-size: 13px;
font-family: Verdana, Arial;
position: absolute;
width: auto;
height: auto;
border: 2px solid rgb(0, 153, 204); padding: 10px; 
     -moz-border-radius-topright: 15px;
     -moz-border-radius-bottomright: 15px;
     -webkit-border-radius-topright: 15px;
     -webkit-border-radius-bottomright: 15px;
     -o-border-radius-topright: 15px;
     -o-border-radius-bottomright: 15px;
    
}

#menuSelect{
background-color: #000000;
padding: 13px;
font-size: 13px;
font-family: Verdana, Arial;
position: absolute;
width: auto;
height: auto;
border: 2px solid rgb(0, 153, 204); padding: 10px; 
     -moz-border-radius-topright: 15px;
     -moz-border-radius-bottomright: 15px;
     -webkit-border-radius-topright: 15px;
     -webkit-border-radius-bottomright: 15px;
     -o-border-radius-topright: 15px;
     -o-border-radius-bottomright: 15px
     
     }
     
#text{    font-size:10px;
        color:#FFFFFF;
        margin:0;
        font-weight:700;
    
    } 
     
a:visited {
    text-decoration: none;
    color: 0033FF;
}
a:hover {
    text-decoration: none;
    color: FFFFFF;
}
a:active {
    text-decoration: none;
    color: 0033FF;
}
body {
    background-color: #000000;
}
</style>

<div id="menuShow">
  <div align="left">
    <p><a href="#" onClick="moveOffMenu();moveOnSelector()">&raquo; Einblenden</a><a href="#" onClick="moveOffMenu();moveOnSelector()"></a></p>
  </div>
</div>

<div id="menuSelect">
  <div align="center"><a href="#" onClick="moveOnMenu();moveOffSelector()">&raquo; Ausblenden</a>
    <br>
    <br>
  </div>
  <table width="130" height="100" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="150" height="100">

<div id="text">
<div>
<p align="center">Dein Betriebssystem</span>
<a href="http://www.ntmb.de/script/show_all.html" target="_blank">
<SCRIPT type="text/javascript" language="javascript" src="http://www.ntmb.de/script/oe.php"></SCRIPT></a></p>
</div>

<div>
<p align="center">Dein Browser<br>
<a href="http://www.ntmb.de/script/show_all.html" target="_blank">
<SCRIPT type="text/javascript" language="javascript" src="http://www.ntmb.de/script/ie.php"></SCRIPT></a></p>
</div>

<div>
<p align="center">Deine IP-Adresse
<a href="http://www.ntmb.de/script/show_all.html" target="_blank">
<SCRIPT type="text/javascript" language="javascript" src="http://www.ntmb.de/script/ip.php"></SCRIPT></a></p>
</div>
</div>
</td>
</tr>
</table>
</div>

<script>

Show ="yes";

// Set OffX in pixels to a negative number 
// somewhat larger than the width of the menu.

var OffX = -180;

// Set the PosX and PosY variables
// to the location on the screen where the
// menu should position (in pixels) when stopped.

var PosX =  0;
var PosY =  50;

// Usually, use the settings shown; but you can
// change the speed and the increment of motion
// across the screen, below.

var speed        = 1;
var increment    = 2;
var incrementNS4 = 5; // for slower NS4 browsers

// do not edit below this line
// ===========================

var is_NS = navigator.appName=="Netscape";
var is_Ver = parseInt(navigator.appVersion);
var is_NS4 = is_NS&&is_Ver>=4&&is_Ver<5;
var is_NS5up = is_NS&&is_Ver>=5;

var MenuX=OffX;
var SelX=PosX;
var sPosX=PosX;
var sOffX=OffX;

if (Show=="yes"){
sPosX=OffX;
sOffX=PosX;
MenuX=sOffX;
SelX=sPosX;
}

if (is_NS4){
increment=incrementNS4;
Lq="document.layers.";
Sq="";
eval(Lq+'menuSelect'+Sq+'.left=sPosX');
eval(Lq+'menuShow'+Sq+'.left=sOffX');
eval(Lq+'menuSelect'+Sq+'.top=PosY');
eval(Lq+'menuShow'+Sq+'.top=PosY');
}else{
Lq="document.all.";
Sq=".style";
document.getElementById('menuSelect').style.left=sPosX+"px";
document.getElementById('menuShow').style.left=sOffX+"px";
document.getElementById('menuSelect').style.top=PosY+"px";
document.getElementById('menuShow').style.top=PosY+"px";
}  

function moveOnMenu(){
if (MenuX<PosX){ 
MenuX=MenuX+increment;
if (is_NS5up){
document.getElementById('menuShow').style.left=MenuX+"px";
}else{
eval(Lq+'menuShow'+Sq+'.left=MenuX');
}
setTimeout('moveOnMenu()',speed);
}
}

function moveOffMenu(){
if (MenuX>OffX){ 
MenuX=MenuX-increment;
if (is_NS5up){
document.getElementById('menuShow').style.left=MenuX+"px";
}else{
eval(Lq+'menuShow'+Sq+'.left=MenuX');
}
setTimeout('moveOffMenu()',speed);
}
}

function moveOffSelector(){
if (SelX>OffX){ 
SelX=SelX-increment;
if (is_NS5up){
document.getElementById('menuSelect').style.left=SelX+"px";
}else{
eval(Lq+'menuSelect'+Sq+'.left=SelX');
}
setTimeout('moveOffSelector()',speed);
}
}

function moveOnSelector(){
if (SelX<PosX){ 
SelX=SelX+increment;
if (is_NS5up){
document.getElementById('menuSelect').style.left=SelX+"px";
}else{
eval(Lq+'menuSelect'+Sq+'.left=SelX');
}
setTimeout('moveOnSelector()',speed);
}
}


</script>


des ist so was

Geschlossen