1 2 3 4 5 6 7 8 9 10 | <!-- DC App Menu CSS --> < link type = "text/css" rel = "stylesheet" href = "dcodes/menus/app/css/dc_app_menu.css" /> < link type = "text/css" rel = "stylesheet" href = "dcodes/menus/app/css/dc_icon_sprites.css" /> <!-- jQuery Library (skip this step if already called on page ) --> < script type = "text/javascript" src = "dcodes/jquery.min.js" ></ script > <!-- (do not call twice) --> <!-- DC App Menu JS --> < script type = "text/javascript" src = "dcodes/menus/app/js/dc_app_menu.js" ></ script > < script type = "text/javascript" > $(document).ready(function($){$('.js-enabled').memu({icon:{inset:true,margin:{top:4,right:10}},width:150,rootWidth:75,height:25});}); </ script > |
1 2 3 4 5 6 7 8 9 10 | <!-- DC App Menu CSS --> < link type = "text/css" rel = "stylesheet" href = "http://cdn.dcodes.net/2/menus/app/css/dc_app_menu.css" /> < link type = "text/css" rel = "stylesheet" href = "http://cdn.dcodes.net/2/menus/app/css/dc_icon_sprites.css" /> <!-- jQuery Library (skip this step if already called on page ) --> < script type = "text/javascript" src = "http://cdn.dcodes.net/2/jquery.min.js" ></ script > <!-- (do not call twice) --> <!-- DC App Menu JS --> < script type = "text/javascript" > $(document).ready(function($){$('.js-enabled').memu({icon:{inset:true,margin:{top:4,right:10}},width:150,rootWidth:75,height:25});}); </ script > |
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 | <!-- DC App Menu Start --> <!-- use only one of the tags below --> < ul class = "dc_appmenu js-enabled" > < ul class = "dc_appmenu" > < li class = "memu-root" > < a href = "#" >File</ a > < ul > < li class = "has-children" > < a href = "sample_2.html" >< div class = "memu-icon sprite-page_white" ></ div >New</ a > < ul > < li >< a href = "#" >< div class = "memu-icon sprite-page_white" ></ div >Text Document</ a ></ li > < li >< a href = "#" >< div class = "memu-icon sprite-script_code" ></ div >HTML Document</ a ></ li > < li >< a href = "#" >< div class = "memu-icon sprite-script_palette" ></ div >CSS Document</ a ></ li > < li >< a href = "#" >< div class = "memu-icon sprite-script" ></ div >JS Document</ a ></ li > < li >< a href = "#" >< div class = "memu-icon sprite-page_white_c" ></ div >C Document</ a ></ li > </ ul > </ li > < li >< a href = "#" >< div class = "memu-icon sprite-folder" ></ div >Open...</ a ></ li > < li >< a href = "#" >< div class = "memu-icon sprite-disk" ></ div >Save</ a ></ li > < li >< a href = "#" >< div class = "memu-icon sprite-disk_multiple" ></ div >Save As...</ a ></ li > < li >< a href = "#" >< div class = "memu-icon sprite-page_white_edit" ></ div >Page Setup...</ a ></ li > < li >< a href = "#" >< div class = "memu-icon sprite-printer" ></ div >Print</ a ></ li > < li >< a href = "#" >< div class = "memu-icon sprite-delete" ></ div >Exit</ a ></ li > </ ul > </ li > < li class = "memu-root" > < a href = "#" >Edit</ a > < ul > < li >< a href = "#" >Undo</ a ></ li > < li >< a href = "#" >Cut</ a ></ li > < li >< a href = "#" >Copy</ a ></ li > < li >< a href = "#" >Paste</ a ></ li > < li >< a href = "#" >Delete</ a ></ li > < li >< a href = "#" >Find...</ a ></ li > < li >< a href = "#" >Find Next</ a ></ li > < li >< a href = "#" >Replace...</ a ></ li > < li >< a href = "#" >Go To...</ a ></ li > < li >< a href = "#" >Select All</ a ></ li > < li >< a href = "#" >Time/Date</ a ></ li > < li class = "has-children" > < a href = "#" >Preferences</ a > < ul > < li class = "has-children" > < a href = "#" >Text Color</ a > < ul > < li >< a href = "#" >Blue</ a ></ li > < li >< a href = "#" >Red</ a ></ li > < li >< a href = "#" >Green</ a ></ li > < li >< a href = "#" >Brown</ a ></ li > < li >< a href = "#" >Orange</ a ></ li > </ ul > </ li > < li class = "has-children" > < a href = "#" >Background</ a > < ul > < li >< a href = "#" >Blue</ a ></ li > < li >< a href = "#" >Red</ a ></ li > < li >< a href = "#" >Green</ a ></ li > < li >< a href = "#" >Brown</ a ></ li > < li >< a href = "#" >Orange</ a ></ li > </ ul > </ li > </ ul > </ li > </ ul > </ li > < li class = "memu-root" > < a href = "#" >Format</ a > < ul > < li >< a href = "#" >Word Wrap</ a ></ li > < li >< a href = "#" >Font...</ a ></ li > </ ul > </ li > < li class = "memu-root" > < a href = "#" >View</ a > < ul > < li >< a href = "#" >Status Bar</ a ></ li > </ ul > </ li > </ ul > <!-- DC App Menu End --> |
© TemplateAccess