starting to cook up a drag-and-drop example
This commit is contained in:
parent
8b45f7f4e0
commit
47f04305fc
14
examples/drag-and-drop/drag-and-drop-1.rkt
Normal file
14
examples/drag-and-drop/drag-and-drop-1.rkt
Normal file
|
@ -0,0 +1,14 @@
|
|||
#lang planet dyoo/whalesong
|
||||
|
||||
(require (planet dyoo/whalesong/web-world))
|
||||
|
||||
;; A small drag-and-drop example using the web-world library.
|
||||
;;
|
||||
;; The world consists of a set of boxes.
|
||||
;;
|
||||
;; A box has an id and a position.
|
||||
|
||||
(define-struct world (boxes))
|
||||
(define-struct box (id x y))
|
||||
|
||||
|
17
examples/drag-and-drop/style.css
Normal file
17
examples/drag-and-drop/style.css
Normal file
|
@ -0,0 +1,17 @@
|
|||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#playground {
|
||||
background-color: lightgray;
|
||||
border: 1px solid black;
|
||||
width: 70%;
|
||||
height: 70%;
|
||||
display: block;
|
||||
}
|
16
examples/drag-and-drop/view.html
Normal file
16
examples/drag-and-drop/view.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" href="style.css" type="text/css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Drag and drop example</h1>
|
||||
|
||||
<div id="playground">
|
||||
This is the playground.
|
||||
</div>
|
||||
|
||||
<input type="button" value="Add"/>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user