comparison inkscape/firefox/madbuilder.html @ 274:96aae15527c8

Port all basic scene editor from pyGtk to the firefox
author wycc
date Thu, 29 Jan 2009 22:30:46 +0800
parents 01439f28d0bd
children 40c0c907c6dd
comparison
equal deleted inserted replaced
273:0cadeb9fdfc3 274:96aae15527c8
1 <html> 1 <html>
2 <head> 2 <head>
3 <script language="javascript" src="jquery-1.3.1.js"></script> 3 <script language="javascript" src="jquery-1.3.1.js"></script>
4 <script language="javascript" src="jqXMLUtils.js"></script> 4 <script language="javascript" src="jqXMLUtils.js"></script>
5 <script language="javascript" src="jqSOAPClient.js"></script> 5 <script language="javascript" src="jqSOAPClient.js"></script>
6 <style type="text/css">
7 .normal {
8 background-color:write
9 }
10 .active {
11 background-color: yellow
12 }
13 a.button {
14 background:#0ff ;
15 color : # 444 ;
16 display : block ;
17 float : left ;
18 font : normal 12px arial, sans-serif ;
19 height : 24px;
20 margin-right : 6px;
21 padding-right : 18px;
22 text-decoration : none ;
23 }
24 a.button span {
25 background : transparent url ( 'bg_button_div.gif' ) no-repeat ;
26 display : block ;
27 line- height : 14px; line- height : 14px;
28 padding : 5px 0 5px 18px; padding : 5px 0 5px 18px;
29 }
30 a.button :active {
31 background-position : bottom right ;
32 color : # 000 ;
33 outline : none ;
34 }
35 a.button :active span {
36 background-position : bottom left ;
37 padding : 6px 0 4px 18px;
38 }
39 </style>
40 </style>
6 </head> 41 </head>
7 <body> 42 <body>
8 <div id='frame' width=800 height=200> 43 <div id='frame' width=800 height=200>
9 </div> 44 </div>
10 45
11 <div id='inkscape' width=1200 height=600> 46 <div id='btns'>
47 <a class='button' href='#'> <span id='Jump' onClick='onButtonClick(this)'>Jump</span></a>
48 <a class='button' href='#'> <span id='InsertKey' onClick='onButtonClick(this)'>Insert</span></a>
49 <a class='button' href='#'> <span id='ExtendScene' onClick='onButtonClick(this)'>Extend</span></a>
50 <a class='button' href='#'> <span id='DeleteScene' onClick='onButtonClick(this)'>Delete</span></a>
51 <br/>
52 <br/>
53 </div>
54 <div id='inkscape' width=1000 height=700>
12 </div> 55 </div>
13 <script type="text/javascript" src="inkscape.js" > 56 <script type="text/javascript" src="inkscape.js" >
14 </script> 57 </script>
15 </body> 58 </body>
16 </html> 59 </html>