Changeset 275
- Timestamp:
- 12/01/06 17:41:19 (2 years ago)
- Files:
-
- branches/0.2.1/sites/demo/index.htm (modified) (1 diff)
- branches/0.2.1/sites/demo/js/demo.htm (modified) (1 diff)
- branches/0.2.1/sites/demo/js/project2.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/0.2.1/sites/demo/index.htm
r274 r275 56 56 57 57 <body> 58 58 <div id="demo"><h1>WYMstyle0.2 CSS framework demo</h1><div id="democontent"></div></div> 59 59 <div id="page"> 60 60 <div id="header"> branches/0.2.1/sites/demo/js/demo.htm
r273 r275 1 <h1>WYMstyle0.2 CSS framework demo</h1>2 1 <div class="wrapper1"> 3 2 <div class="wrapper2"> branches/0.2.1/sites/demo/js/project2.js
r273 r275 16 16 $(document).ready(function() { 17 17 18 19 20 $("body").prepend('<div id="demo"></div>').find("div#demo").load("js/demo.htm", function(){ 18 // load demo 19 $("div#democontent").load("js/demo.htm", function(){ 21 20 // disable styles 22 21 disableAllStyles(); … … 62 61 }); 63 62 63 64 64 $('#demo').Draggable( 65 65 { 66 //handle: 'h1',66 handle: 'h1', 67 67 zIndex: 1000, 68 ghosting: true, 69 opacity: 0.3 68 ghosting: false 70 69 } 71 ); 70 ); 71 72 72 }); 73 73