我正在使用iScroll.js构建一个单页可滚动的Web应用程序,无论我做什么,我都无法使其内置缩放功能正常工作。我包含了iscroll-zoom.js文件,但仍未取得任何成功。
我的文件头部中有这个:
<script src="js/iscroll.js"></script>
<script src="js/iscroll-zoom.js"></script>
<script src="js/iscroll-probe.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
这个脚本:
function loaded () {
myScroll = new IScroll('#wrapper', {
mouseWheel: true,
zoom: true,
bounce: false
});
根据iScroll Documentation这应该有效,但事实并非如此。如果有帮助,我需要在iPad上运行。
答案 0 :(得分:0)
function createZoomForID (id) {
$timeout(function(){
var wrapper = document.getElementById(id);
var myScroll = new IScrollZ(wrapper, {
zoom: true,
zoomMin: 1,
zoomMax: 4,
scrollX: true,
scrollY: true,
mouseWheel: true,
freeScroll: true,
wheelAction: 'zoom',
});
$scope[id] = myScroll;
}, 125);
}