我正在用 appcelerator 构建一个应用程序。我还在构建一个自定义幻灯片菜单。因此,如果您单击按钮,幻灯片菜单会从左到右出现。
现在很晚了,我有这个固定宽度的菜单。为了隐藏这个菜单,我在 -width 处设置了一个属性。
现在我想用百分比设置菜单的宽度。但我不知道如何隐藏菜单。
所以这是我的css文件:
"#main_menu": {
layout: "vertical",
scrollType: "vertical",
showVerticalScrollIndicator: true,
top: 0,
left: 0,
width: "55%",
height: Ti.UI.FILL,
backgroundColor: "#70C662",
}
这是我的 js 文件
var menu_width = (Ti.Platform.displayCaps.platformWidth/2);
main_menu = Alloy.createController("_main_menu", args).getView();
$.sidebar.left = -menu_width;
但是 menu_width 的大小不正确,因为他的值是 180,而且我的智能手机不可能有 360px 的尺寸。