2

我想像三星在他们的文档中一样制作一个列表输入弹出窗口:http: //www.samsungdforum.com/Guide/View/Developer_Documentation/User_Experience_Guideline_1.5/Extra_Features/Policy_on_popup_windows/Action_Window

像这样:

描述图片

但没有关于如何实现这一点的信息。

这是我找到的示例代码:

 $('#newName_popup').sfPopup({
      text: 'Enter your name',
      buttons: ['Ok', 'Cancel'],
      timeout: 0,
      defaultFocus: 0, 
      callback: function newNameCallback(selectedIndex){
           alert('popup_callback');
           if(selectedIndex == 0){
                alert();
           }
      }
 });

如何找到所有属性(文本、按钮等)的名称?

4

1 回答 1

1

我放弃了尝试更改三星提供的输入,而是制作了一个带有透明黑色背景的小场景:

开始场景:

sf.scene.show('CityPopup');
sf.scene.focus('CityPopup');

隐藏场景:

sf.scene.show('Scene1');
sf.scene.hide('CityPopup');
sf.scene.focus('Scene1');

场景背景:

background : rgba(0, 0, 0, 0.6);
于 2012-10-05T11:54:18.483 回答