-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti_script.js
More file actions
71 lines (61 loc) · 1.57 KB
/
multi_script.js
File metadata and controls
71 lines (61 loc) · 1.57 KB
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
$(document).ready(function () {
$(".random").each(function () {
var randomtop = Math.floor(Math.random() * ($(window).height() - $(this).height()-400)),
randomleft = Math.floor(Math.random() * ($(window).width() - $(this).width()-200));
$(this).css({
"top": randomtop,
"left": randomleft,
});
});
});
$(function() {
$( "#pic_module1, #pic_module2, #pic_module3, #pic_module4, #pic_module5, #pic_module6, #pic_module7, #pic_box" ).draggable();
});
$(function() {
$("#list1, #list2").draggable();
});
$(document).ready(function () {
$(".pics").click(function(){
$('#pic_box, #list1, #list2, #x-pics').toggle();
});
});
$(document).ready(function () {
$("#x-pics").click(function(){
$('#pic_box, #list1, #list2, #x-pics').toggle();
});
});
$(document).ready(function () {
$(".lineup").click(function(){
$('#lineup_row').toggle();
});
});
$(document).ready(function () {
$(".contact").click(function(){
$('.contacts, #x-contact').toggle();
});
});
$(document).ready(function () {
$("#x-contact").click(function(){
$('.contacts, #x-contact').toggle();
});
});
$(document).ready(function () {
$(".what").click(function(){
$('.wat, #x-wat').toggle();
});
});
$(document).ready(function () {
$("#x-wat").click(function(){
$('.wat, #x-wat').toggle();
});
});
var myVar;
function myFunction() {
myVar = setTimeout(showPage, 2000);
}
$(window).ready(function() {
$('#loading').hide();
});
// $(".pics").click(function(){
// $('#pic_box').hide();
// });