關(guān)于scrollPane滾屏問題?
我用scrollPane做了個(gè)滾屏效果,我想實(shí)現(xiàn)在滾動(dòng)過程中可以拖動(dòng)滑塊看上下其他內(nèi)容?
不知道可不可以實(shí)現(xiàn)?謝謝指教!
滾屏語句:
我用scrollPane做了個(gè)滾屏效果,我想實(shí)現(xiàn)在滾動(dòng)過程中可以拖動(dòng)滑塊看上下其他內(nèi)容?
不知道可不可以實(shí)現(xiàn)?謝謝指教!
滾屏語句:
scrollPane.contentPath = "001d";
y = 0;
onEnterFrame = function () {
scrollPane.vPosition = y;
y += 0.52;
};
y = 0;
onEnterFrame = function () {
scrollPane.vPosition = y;
y += 0.52;
};
點(diǎn)這里下載演示效果文件
點(diǎn)這里下載源文件
貓大哥解答:
scrollPane.contentPath = "001d";
y = 0;
hh = false;
onEnterFrame = function () {
if (hh == false) {
scrollPane.vPosition = y;
y += 0.52;
} else {
y = scrollPane.vPosition;
hh = false;
}
};
t = new Object();
t.scroll = function() {
hh = true;
};
scrollPane.addEventListener("scroll", t);
y = 0;
hh = false;
onEnterFrame = function () {
if (hh == false) {
scrollPane.vPosition = y;
y += 0.52;
} else {
y = scrollPane.vPosition;
hh = false;
}
};
t = new Object();
t.scroll = function() {
hh = true;
};
scrollPane.addEventListener("scroll", t);
點(diǎn)這里下載演示效果文件
點(diǎn)這里下載源文件