4

我正在div推文(以及 Facebook 喜欢)按钮的顶部制作一个。我希望它在我将鼠标悬停在(按钮)上方时立即向上移动,div这样你就可以真正按下真正的推文按钮。我试过以下。

HTML:

<div class="tweet-bttn">Tweet</div>         
<div class="tweet-widget">
    <a href="https://twitter.com/share" class="twitter-share-button">Tweet</a>
    <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>

CSS:

.tweet-bttn{
    position: relative;
    top: -30px;
    left: -10px;
    display:block;
    opacity: 1;
    width: 80px;
    padding: 10px 12px;
    margin:0px;
    z-index:3;}

.tweet-bttn:hover{
    -webkit-animation-name: UpTweet;
    -moz-animation-name: UpTweet;
    -o-animation-name: UpTweet;
    animation-name: UpTweet;
    -webkit-animation-duration:.5s;
    -moz-animation-duration:.5s;
    animation-duration:.5s;
    -webkit-transition: -webkit-transform 200ms ease-in-out;
    -moz-transition: -moz-transform 200ms ease-in-out;
    -o-transition: -o-transform 200ms ease-in-out;
    transition: transform 200ms ease-in-out;}

@-webkit-keyframes UpTweet {
    0% {
        -webkit-transform: translateY(0);
    }   
    80% {
        -webkit-transform: translateY(-55px);
    }
    90% {
        -webkit-transform: translateY(-47px);
    }
    100% {
        -webkit-transform: translateY(-50px);
    }
    ... and all other browser pre-fixes.
}

我不确定出了什么问题。看起来,只要我悬停,它就会移动,但是如果我将光标再移动一个像素,它必须进行新的计算,这会导致闪烁。

4

1 回答 1

6

当您可以简单地使用上述方法实现上述功能时,我不知道为什么您需要动画transitions

诀窍是在父悬停时移动子元素

演示

div {
    margin: 100px;
    position: relative;
    border: 1px solid #aaa;
    height: 30px;
}

div span {
    position: absolute;
    left: 0;
    width: 100px;
    background: #fff;
    top: 0;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    transition: all 1s;
}

div span:nth-of-type(1) {
/* Just to be sure the element stays above the 
   content to be revealed */
    z-index: 1;
}

div:hover span:nth-of-type(1) { /* Move span on parent hover */
    top: -40px;
}

说明:首先我们将span's 包裹在一个div元素中position: relative; ,然后我们使用transitionspan来帮助我们平滑 的流动animation,现在我们使用position: absolute;with left: 0;,这将使元素彼此堆叠,而不是我们z-index用来确保第一个元素覆盖第二个。

现在最后,我们移动第一个span,我们通过使用选择它nth-of-type(1),它只是嵌套在它里面的第一个子元素div,我们分配当父元素悬停top: -40px;时将传输的元素。div

于 2013-09-17T08:48:49.873 回答