sku-pg
Version:
Skulpt is a Javascript implementation of Python 2.x. Python that runs in your browser!
41 lines (37 loc) • 862 B
HTML
<!--
@author tkent@google.com (TAMURA Kent)
-->
<html>
<!--
Copyright 2009 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by an Apache 2.0 License.
See the COPYING file for details.
-->
<head>
<style type='text/css'>
#demoMenuButton {
/*
* Set a fixed width because the button size can be changed by a scroll bar
* without it.
*/
width: 64px;
}
.goog-menu {
position: absolute;
color: #aaa;
}
</style>
</head>
<body>
<div id="demoMenuButton" class="goog-menu-button">
Button
<div id="demoMenu" class="goog-menu">
<div id='menuItem1' class="goog-menuitem">Annual Report.pdf</div>
<div id='menuItem2' class="goog-menuitem">Quarterly Update.pdf</div>
<div id='menuItem3' class="goog-menuitem">Enemies List.txt</div>
</div>
</div>
<div id="footer"></div>
</body>
</html>