CodeThatMenu Separators, Opacity and Timer Example
var MenuDef = {
"timer" : 500,
"style" : {
"box" : true,
"css" : "test1",
"align" : "center",
"bgcolor" : "#C1C1C1",
"size" : [100, 30],
"direction" : "h",
"itemoffset" : {
"y" : 1, "x" : 1
},
"border" : {
"color" : "black", "width" : 1
},
"opacity" : 50
},
"itemover" : {
"bgcolor" : "#EEEEEE", "css" : "test1"
},
"position" : {
"absolute" : true, "pos" : [50, 50]
},
"separator" : {
"style" : {
"bgcolor" : "black", "size" : [100, 1]
}
},
"items" : [
{
"text" : "Item 1",
"menu" : {
"style" : {
"direction" : "v"
},
"position" : {
"anchor" : "s",
"anchor_side" : "nw",
"menuoffset" : {
"x" : "0", "y" : "3"
}
},
"items" : [
{
"text" : "Item 1 : 1"
},
{
"type" : "separator"
},
{
"text" : "Item 1 : 2"
},
{
"type" : "separator"
},
{
"text" : "Item 1 : 3"
} ]
}
},
{
"text" : "Item 2",
"menu" : {
"position" : {
"anchor" : "nw", "anchor_side" : "sw",
"menuoffset" : {
"x" : "0", "y" : "-3"
}
},
"separator" : {
"style" : {
"bgcolor" : "black", "size" : [1, 30]
}
},
"items" : [
{
"text" : "Item 2 : 1"
},
{
"type" : "separator"
},
{
"text" : "Item 2 : 2"
} ]
}
} ]
};
|