2

我目前正在为我公司的网站制作一个简单的交互式地图。我们正试图完全摆脱闪存。

我正在做的是,将地图上的点设置为 css 圆圈(与背景颜色和 css3 圆角链接),将鼠标悬停在其上时,其尺寸会略微扩大。

我遇到的问题是悬停动画不是很流畅。由于圆圈的性质,为了让它们在悬停时向外扩展而不向下移动,我必须使圆圈的位置稍微移动(悬停动画结束时顶部和左侧的 -5 个像素)。当我取下鼠标时,它会回到原来的大小和位置,但是它会跳跃一个像素并且有时看起来很乱。

这是我当前原型的链接: http: //clients.taylordesign.com/td/map_v02/interactive-map.html

那么有没有办法让动画完美流畅呢?

我在 Mac、sno​​w leopard、chrome、firefox 上看这个。

$(document).ready(function(e) {

$('a.location').each(function() {

    var pos = $(this).find('span').position();
    var posLeftHover = (pos.left - 5);
    var posTopHover = (pos.top - 5);

    $(this).hover(function() {
        $(this).find('span').stop(true, false).animate({
            height: '25px',
            width: '25px',
            left: posLeftHover,
            top: posTopHover
        }, 200);
    }, function() {
        $(this).find('span').stop(true, false).animate({
            height: '15px',
            width: '15px',
            left: pos.left,
            top: pos.top
        }, 200);
    });
});

});
4

1 回答 1

1

我会尝试将跨度放在一个 25x25 的框中,并使用 CSS 将其垂直和水平对齐到该框内的中心。然后你不需要动画位置,只需要大小。我认为这会让你看起来更流畅。

http://jsfiddle.net/9LXSv/

CSS:

.box {width:25px; height:25px; text-align:center; position:absolute;}
.dot {width:15px; height:15px; vertical-align:middle; background:red; display:inline-block;}​

HTML:

<div class="box" style="left:100px; top:100px;">
  <span class="dot"></span>
</div>

<div class="box" style="left:200px; top:100px;">
  <span class="dot"></span>
</div>
​

JS:

$(document).ready(function(e) {

  $('.box').hover(function() {
    $(this).find('span').animate({
      height: '25px',
      width: '25px'
    }, 200);
  }, function() {
    $(this).find('span').animate({
      height: '15px',
      width: '15px'
    }, 200);
  });
});

​
于 2012-07-10T16:37:34.427 回答