0

我有一个网站,我在其中使用一些 javascript 来“滚动”地图。这很好用,只是我无法让地图以页面加载为中心。

我需要的是居中

我在 Github 上使用的脚本称为 overscroll: https ://github.com/azoff/Overscroll/blob/master/jquery.overscroll.js

在第 582 行,我认为需要更改:

    position: 'absolute',
    opacity: options.persistThumbs ? settings.thumbOpacity : 0,
    'background-color': 'black',
    width: size.width + 'px',
    height: size.height + 'px',
    'border-radius': size.corner + 'px',
    'margin': size.top + 'px 0 0 ' + size.left + 'px',
    'z-index': options.zIndex

(只需要左居中)。

所以我认为:'margin': size.top + 'px 0 0' + size.left + 'px',

需要类似于:'margin': size.top + 'px 0 0' + size.left + 'px': 2 - half size.left ??

我希望有人可以帮助我。

4

1 回答 1

0

如何获取客户端的屏幕宽度并进行正确的计算?

'margin': size.top + 'px 0 0 ' + (screen.width - size.width) / 2 + 'px',

或许?

于 2012-10-29T13:29:48.017 回答