这是我关于stackoverflow的第一个问题。
想知道是否有人可以指向我使用JS / JQuery动画按钮的解决方案/资源。
特别是,我无法弄清楚的动画是在悬停时旋转180度的圆形按钮。
谢谢:)
答案 0 :(得分:1)
您可以使用css关键帧
div {
width: 100px;
height: 100px;
background: red;
position :relative;
-webkit-animation: mymove 1s infinite; /* Chrome, Safari, Opera */
animation: mymove 1s infinite;
}
/* Standard syntax */
@keyframes mymove {
from { transform: rotateY(0deg);}
to { transform: rotateY(360deg);
}
答案 1 :(得分:1)
您可以使用CSS为按钮设置动画。
在http://www.w3schools.com/css/css3_animations.asp,您可以了解CSS动画。您可能还想了解http://www.w3schools.com/css/css3_transitions.asp处的CSS转换。如果您使用JS创建动画的内容是在要设置动画的HTML元素上设置CSS转换,然后使用JS设置CSS属性,如background-color
和transform
。您可以使用element.style.property
访问元素的CSS。将property
替换为您要更改或添加的属性。
答案 2 :(得分:1)
我找到的最直观的答案是:
<div class="flip-container" ontouchstart="this.classList.toggle('hover');">
<div class="flipper">
<div class="front">
<!-- front content -->
</div>
<div class="back">
<!-- back content -->
</div>
</div>
</div>
/*CSS entire container, keeps perspective */
.flip-container {
perspective: 1000px;
}
/* flip the pane when hovered */
.flip-container:hover .flipper, .flip-container.hover .flipper {
transform: rotateY(180deg);
}
.flip-container, .front, .back {
width: 320px;
height: 480px;
}
/* flip speed goes here */
.flipper {
transition: 0.6s;
transform-style: preserve-3d;
position: relative;
}
/* hide back of pane during swap */
.front, .back {
backface-visibility: hidden;
position: absolute;
top: 0;
left: 0;
}
/* front pane, placed above back */
.front {
z-index: 2;
/* for firefox 31 */
transform: rotateY(0deg);
}
/* back, initially hidden pane */
.back {
transform: rotateY(180deg);
}
可在此处找到进一步说明: https://davidwalsh.name/css-flip