Advertisement

06.18.2008 at 08:41AM PDT, ID: 23495673
[x]
Attachment Details

Animate two divs to switch places

Asked by chuckbeats in Dynamic HTML (DHTML), JavaScript

Tags: DHTML and javascript

Im looking for a good site or maybe even some help on working on this.  I have "2" divs that when slected they change places, no problem.  What i am trying to do is have them animate when switching places.  Like one div heads down and then the second one goes up.  Here is what my code looks like if you need it.  Thanks for any suggestions.  Let me know if there is anything else..Start Free Trial
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:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
* {
margin:0px;
padding:0px;
}
 
body {
background-color:#f2f2f2;
}
 
#pictrueContainer {
width:300px;
text-align:center;
margin:10px;
border:1px solid #666666;
background-color:#FFFFFF;
padding-bottom:3px;
}
 
.pictureEven {
height:75px;
width:295px;
background-color:#CCCCCC;
border:1px solid #000000;
margin-top:3px;
text-align:left;
position:relative;
}
 
.pictureEven img {
height:75px;
width:75px;
background-color:#CCCCCC;
border-right:1px solid #000000;
border-bottom:0px;
border-left:0px;
border-top:0px;
}
 
.pictureEven img:hover {
filter:alpha(opacity=50);
-moz-opacity:.50;
opacity:.50;
cursor:pointer;
}
 
.pictureOdd {
height:75px;
width:295px;
background-color:#CCCCCC;
border:1px solid #000000;
margin-top:3px;
text-align:left;
position:relative;
}
 
.pictureOdd img {
height:75px;
width:75px;
background-color:#CCCCCC;
border-right:1px solid #000000;
border-bottom:0px;
border-left:0px;
border-top:0px;
}
 
.pictureOdd img:hover {
filter:alpha(opacity=50);
-moz-opacity:.50;
opacity:.50;
cursor:pointer;
}
 
.link_style {
position:relative;
vertical-align:top;
left:60px;
top:27px;
font-family:"Courier New", Courier, monospace;
font-size:12px;
color:#333333;
 
}
 
</style>
 
<script type="text/javascript">
 
var foo = null; // object
 
function doMove() {
  foo.style.top = parseInt(foo.style.top)+3+'px';
  setTimeout(doMove,5); // call doMove in 20msec
}
 
function init() {
  foo = document.getElementById('title'); // get the "foo" object
  foo.style.top = '0px'; // set its initial position to 0px
  foo.style.zIndex='100';
  doMove(); // start animating
}
 
 
 
var selectedCount = 0;
var firstSelectedDiv;
var secondSelectedDiv;
 
function toggleTiles(tile)
{
    switch (selectedCount)
    {
        case 0:
            selectedCount = 1;
            firstSelectedDiv = document.getElementById(tile);
            firstSelectedDiv.style.opacity = '0.5';
            break;
        case 1:
            selectedCount = 2;
            secondSelectedDiv = document.getElementById(tile);
            if ( secondSelectedDiv == firstSelectedDiv )
            {
                alert("Must Select Two images");
                selectedCount = 1;
 
            } // end: if
            else //
            {
                secondSelectedDiv.style.opacity = '0.5';
                toggleTiles(null);
 
            } // end: else
            break;
        case 2:
            var swapTileContents = firstSelectedDiv.innerHTML;
            firstSelectedDiv.innerHTML = secondSelectedDiv.innerHTML;
            secondSelectedDiv.innerHTML = swapTileContents;
            alert('swapped');
            firstSelectedDiv.style.opacity = '1.0';
            secondSelectedDiv.style.opacity = '1.0';
            selectedCount = 0;
            break;
    }
}
 
 
 
 
</script>
 
 
 
</head>
 
<body>
<div id="pictrueContainer">
<div class="pictureOdd"  id="tile0x0" onclick="toggleTiles(this.id);" > <img src="picUpload/pic1.jpg" alt="1" /> <a href="#" class="link_style">Listing_11.jpg</a> </div>
<div class="pictureEven" id="tile0x1" onclick="toggleTiles(this.id);" ><img src="picUpload/pic2.jpg" alt="2" /> <a href="#" class="link_style">Listing_21.jpg</a> </div>
<div class="pictureOdd" id="tile0x2" onclick="toggleTiles(this.id);" ><img src="picUpload/pic3.jpg" alt="3" /> <a href="#" class="link_style">Listing_22.jpg</a></div>
<div class="pictureEven" id="tile0x3" onclick="toggleTiles(this.id);" ><img src="picUpload/pic4.jpg" alt="4" /> <a href="#" class="link_style">Listing_23.jpg</a></div>
<div class="pictureOdd" id="tile0x4" onclick="toggleTiles(this.id);"><img src="picUpload/pic5.jpg" alt="5" /> <a href="#" class="link_style">Listing_24.jpg</a></div>
<div class="pictureEven" id="tile0x5" onclick="toggleTiles(this.id);"><img src="picUpload/pic6.jpg" alt="6"/> <a href="#" class="link_style">Listing_25.jpg</a></div>
<div class="pictureOdd" id="tile0x6" onclick="toggleTiles(this.id);"><img src="picUpload/pic7.jpg" alt="7" /><a href="#" class="link_style">Listing_26.jpg</a></div>
<div class="pictureEven" id="tile0x7" onclick="toggleTiles(this.id);"><img src="picUpload/pic8.jpg" alt="8" /> <a href="#" class="link_style">Listing_27.jpg</a></div>
<div class="pictureOdd" id="tile0x8" onclick="toggleTiles(this.id);"><img src="picUpload/pic9.jpg" alt="9" /> <a href="#" class="link_style">Listing_28.jpg</a></div>
<div class="pictureEven" id="tile0x9" onclick="toggleTiles(this.id);"><img src="picUpload/pic10.jpg" alt="10" /> <a href="#" class="link_style">Listing_29.jpg</a></div>
 
 
</div>
<img src="picUpload/pic11.jpg" />
</body>
</html>
[+][-]06.18.2008 at 11:23AM PDT, ID: 21815575

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Dynamic HTML (DHTML), JavaScript
Tags: DHTML and javascript
Sign Up Now!
Solution Provided By: ruscomp
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628