2012-05-31 83 views
0

如何禁用鼠標事件?禁用鼠標事件和進度條

我想在網格和卷的切片上使用非常簡單的鼠標事件,並在其中使用一些ajax調用,因此不需要集成事件。

我該如何禁用進度條?

我在什麼地方讀它...

有什麼樣的參考在那裏我可以看到什麼命令可用?

the xtk library

在此先感謝

回答

1

交互器以及渲染器具有配置選項

var r = X.renderer3D(); 
// to disable the progress bar 
r.config.PROGRESSBAR_ENABLED = false; 
r.init(); // the r.init creates the interactor 

// to disable the mouse wheel interaction 
r.interactor.config.MOUSEWHEEL_ENABLED = false; 
// to disable mouse clicks 
r.interactor.config.MOUSECLICKS_ENABLED = false; 
// init the interactor again 
r.interactor.init(); 

要獲得關於API的信息,請訪問http://api.goXTK.com。不幸的是,目前的API文檔並沒有涵蓋所有內容(f.e.配置選項)。所以,看看這裏記錄的來源:https://github.com/xtk/X/blob/master/io/interactor.js#L189