summaryrefslogtreecommitdiff
path: root/static/trash/index5.html
blob: b30e42f2ca432b39484885f434f40f5393395674 (plain)
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
<html>
  <head>
    <title>dump.fm</title>
    <link rel="stylesheet" type="text/css" href="static/reset.css">
    <link rel="stylesheet" type="text/css" href="static/pichat.css">
    <link rel="stylesheet" type="text/css" href="static/style.css">



    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" src="static/pichat.js"></script>
        <link rel="shortcut icon" href="static/favicon.ico">

<script type="text/javascript"><!--
      $(document).ready(function() {

        //  nav tab animation  
        var navDuration = 150; //time in miliseconds
        var navJumpHeight = "5px";

        $('#nav1 li').hover(function() {
            $(this).animate({ top : "-="+navJumpHeight }, navDuration);            
        }, function() {
            $(this).animate({ top : "15px" }, navDuration);
        });
        
        
        //  nav animation2  
        $('#nav_move').css({ 
          width: $('#nav2 li:first a').width()+20, 
          height: $('#nav2 li:first a').height()+20 
        });
        $('#nav2 li:first a').addClass('cur');
        
        $('#nav2 a').click(function() {
          var offset = $(this).offset();
          var offsetBody = $('#center_wrapper').offset(); //find the offset of the wrapping div    
          $('#nav_move').animate(
            { 
              width: $(this).width()+20, 
              height: $(this).height()+20, 
              left: (offset.left - offsetBody.left - 143) 
            }, 
            { duration: 350, easing: 'easeInOutCirc' }
          );
          $('.cur').removeClass('cur');
          $(this).addClass('cur');
          return false;
        });           
        
        
        //  list animation  
        var fadeDuration = 150; //time in milliseconds
        
        $('#list1 li a').hover(function() {
          $(this).animate({ paddingLeft: '30px' }, fadeDuration);
          $(this).children('span').show().animate({ left: -5 }, fadeDuration);
        }, function() {
          $(this).animate({ paddingLeft: '15px' }, fadeDuration);
          $(this).children('span').animate({ left: -35 }, fadeDuration).fadeOut(fadeDuration);          
        });
        
        
        $('.see_code').click(function() {
          if($(this).parent().next().is(':visible')) {
            $(this).html('+ Show Code');
            $(this).parent().next().toggle();
          } else {
            $(this).html('- Hide Code');
            $(this).parent().next().toggle();            
          }
          return false;
        });
        
      });//doc ready
// --></script>


    
    <script type="text/javascript">
function showPopup(url) {
newwindow=window.open(url,'name','height=600,width=820,top=30,left=10,resizable');
if (window.focus) {newwindow.focus()}
}
</script> 
  </head>
  <body>
    <div id="content">
      <div id="logo">
<img src="static/dumpbub.png" width="367" height="95">
      </div>
           
      <div id="chatbox">
        <div id="welcomebar" style="display: none">
          <span>Welcome, </span>
          <span id="nickspan"></span>
        </div>
           <div id="messagetabs">
           <ul id="nav1">

             <div align="right"><li style="top: 15px;"><a href="log.h"><img src="static/log4.png" width="97" height="39"></span></a></li>
</div>
             </ul>
           </div>
        <div id="rapper">
        <div id="userListicon">

          <div align="left">
            <p>UsrLst</p>
</div>
        </div>
        <div id="popout">
          <div align="right"><a href="http://dump.fm"onClick='showPopup(this.href);return(false);'>popout room</a></div>
        </div>
        <div id="userList"></div>
        
        <div id="messagePane">

          <div id="messageList"></div>
          <div id="msgInputDiv">
            <input id="msgInput" type="input" disabled="disabled" />
            <input id="msgSubmit" type="submit" value="Send Image URL" 
                   disabled="disabled" />
          </div>
        </div>
      </div>

  <div id="lillogo" align="center">
    <div align="center">
      <div id="binfo">
        <p>dump.fm lets you talk with pictures.  beta 0.0127! <img src="static/lillogo.png" width="16" height="16"></p>
      </div>
    </div>
  </div>

    <div class="content"> </div>
  </body>
</html>