在悬停时使用 CSS 变换时闪烁的 div
我在推文(以及 Facebook 点赞)按钮的顶部制作了一个 div
.我希望它在我将鼠标悬停在 div
(按钮)上方时立即向上移动,这样您就可以真正按下真正的推文按钮.我尝试了以下方法.
I'm making a div
on top of the tweet (and also the Facebook like) button. I want it to move up as soon as I hover above the div
(button) so you can actually press the real tweet button. I've tried the following.
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.
}
我不确定出了什么问题.看起来一悬停,它就会移动,但如果我将光标再移动一个像素,它必须进行新的计算,这会导致闪烁.
I'm not sure what's going wrong. It looks like that as soon as I hover, it moves, but if I move the cursor one more pixel, it has to do a new calculation which causes the flickering.
推荐答案
当你可以简单地使用 transitions
诀窍是在父鼠标悬停时移动子元素
The trick is to move the child element on parent hover
演示
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
包裹在 div
元素中,即 position: relative;
稍后我们在 span
上使用 transition
这将有助于我们平滑 animation
的流程,现在我们使用 position: absolute;
和 left: 0;
,这会将元素堆叠在一起,而不是我们使用 z-index
来确保第一个元素覆盖第二个元素.
Explanation: Firstly we wrap span
's inside a div
element which is position: relative;
and later we use transition
on span
which will help us to smooth the flow of the animation
, now we use position: absolute;
with left: 0;
, this will stack elements on one another, than we use z-index
to make sure the first element overlays the second.
现在最后,我们移动第一个 span
,我们使用 nth-of-type(1)
选择它,它只是它的第一个子类它嵌套在 div
中,我们指定 top: -40px;
将在父 div
悬停时传输.
Now at last, we move the first span
, we select that by using nth-of-type(1)
, which is nothing but first child of it's kind which is nested inside div
, and we assign top: -40px;
which will transit when the parent div
is hovered.
相关文章