- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个名为 announcement
的 div 元素,我用 CSS 对其进行了定位:
#announcement{
position: fixed;
bottom:50px;
width: 340px;
height: 90px;
left: 50%;
transform:translate(-50%,0);
z-index:3;
font-family: Courier, monospace;
font-size:15px;
font-weight:400;
line-height:1.6;
}
查看此代码笔:http://codepen.io/martellalex/pen/WxGjeX
body {
box-sizing: border-box
}
#announcement {
position: fixed;
bottom: 50px;
width: 340px;
height: 90px;
left: 50%;
transform: translate(-50%, 0);
z-index: 3;
font-family: Courier, monospace;
font-size: 15px;
font-weight: 400;
line-height: 1.6;
}
#announcement-1 {
width: 100%;
height: 100%;
background-color: hsla(0, 0%, 7%, 0.85);
border-radius: 45px;
color: #fff;
box-shadow: 0 0 5px 0 hsla(0, 0%, 7%, 0.35)l
}
#announcement-1-1 {
float: left;
width: 64px;
margin-top: 13px;
margin-left: 15px;
}
#announcement-1-1-1 {
transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
background-color: transparent;
}
#announcement-1-1-1-1 {
width: 64px;
height: 64px;
border: 0;
border-radius: 50%;
}
#announcement-1-2 {
float: left;
margin-top: 10px;
margin-left: 15px;
width: 210px;
}
#announcement-1-2 h4 {
margin: 0;
padding: 0;
font-size: 12px;
font-weight: bold;
margin-bottom: 3px;
}
#announcement-1-2 p {
color: #999;
line-height: 1.1;
margin-top: 3px;
font-size: 12px;
margin: 0;
padding: 0;
display: block;
}
#announcement-1-2-3 {
position: absolute;
bottom: 8px;
font-size: 12px;
}
#announcement-1-2-3-1 {
color: #fff
}
#announcement-1-2-3-2 {
font-family: Courier, monospace;
font-size: 12px;
font-weight: 400;
background: none;
border: 0;
text-decoration: underline;
color: #fff;
}
.run-animation.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX 1s;
animation: flipInX 1s;
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
<div id='announcement' class='run-animation flipInX'>
<div id='announcement-1'>
<div id='announcement-1-1'>
<a href="https://google.com" title="More info" id="announcement-1-1-1">
<img id="announcement-1-1-1-1" src="https://images.unsplash.com/announcement-1466017995174-05cef779d74b?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&fit=crop&h=128&w=128&s=834e52d3266c089e2260f3029e801ad1" alt="" />
</a>
</div>
<div id='announcement-1-2'>
<h4>Buy this book</h4>
<p>Awesome reason why.</p>
<div id="announcement-1-2-3">
<a href="https://google.com" id='announcement-1-2-3-1'>More info</a>
<button id="announcement-1-2-3-2">Dismiss</button>
</div>
</div>
</div>
</div>
请注意,我使用 left: 50%; 居中变换:翻译(-50%,0)
。 编辑:请注意,我还使用 bottom: 50px
将 div 定位在屏幕底部上方 50px 处。
我的问题:我正在尝试使用取自 animate.css
的 flipInX
制作动画。该元素会进行动画处理,但在动画期间它向右移动,然后在动画结束时返回到原始位置。
如何让它在动画期间保持在居中位置?
我已经提取了 flipInX
的动画 CSS 并将其包含在代码笔中:
.run-animation.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX 1s;
animation: flipInX 1s;
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
最佳答案
你可以包装<div id='announcement'>
到另一个 div,例如
<div id='announcement-wrapper'>
<div id='announcement' class='run-animation flipInX'>
...
</div>
</div>
并将相关样式移动到包装器 div,以便动画只发生在 #announcement
上不是包装器。
body {
box-sizing: border-box
}
#announcement-wrapper {
position: fixed;
bottom: 50px;
width: 340px;
height: 90px;
left: 50%;
transform: translate(-50%, 0);
z-index: 3;
font-family: Courier, monospace;
font-size: 15px;
font-weight: 400;
line-height: 1.6;
}
#announcement {
height: inherit;
}
#announcement-1 {
width: 100%;
height: 100%;
background-color: hsla(0, 0%, 7%, 0.85);
border-radius: 45px;
color: #fff;
box-shadow: 0 0 5px 0 hsla(0, 0%, 7%, 0.35);
}
#announcement-1-1 {
float: left;
width: 64px;
margin-top: 13px;
margin-left: 15px;
}
#announcement-1-1-1 {
transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
background-color: transparent;
}
#announcement-1-1-1-1 {
width: 64px;
height: 64px;
border: 0;
border-radius: 50%;
}
#announcement-1-2 {
float: left;
margin-top: 10px;
margin-left: 15px;
width: 210px;
}
#announcement-1-2 h4 {
margin: 0;
padding: 0;
font-size: 12px;
font-weight: bold;
margin-bottom: 3px;
}
#announcement-1-2 p {
color: #999;
line-height: 1.1;
margin-top: 3px;
font-size: 12px;
margin: 0;
padding: 0;
display: block;
}
#announcement-1-2-3 {
position: absolute;
bottom: 8px;
font-size: 12px;
}
#announcement-1-2-3-1 {
color: #fff
}
#announcement-1-2-3-2 {
font-family: Courier, monospace;
font-size: 12px;
font-weight: 400;
background: none;
border: 0;
text-decoration: underline;
color: #fff;
}
.run-animation.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX 1s;
animation: flipInX 1s;
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
<div id='announcement-wrapper'>
<div id='announcement' class='run-animation flipInX'>
<div id='announcement-1'>
<div id='announcement-1-1'>
<a href="https://google.com" title="More info" id="announcement-1-1-1">
<img id="announcement-1-1-1-1" src="https://images.unsplash.com/announcement-1466017995174-05cef779d74b?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&fit=crop&h=128&w=128&s=834e52d3266c089e2260f3029e801ad1" alt="" />
</a>
</div>
<div id='announcement-1-2'>
<h4>Buy this book</h4>
<p>Awesome reason why.</p>
<div id="announcement-1-2-3">
<a href="https://google.com" id='announcement-1-2-3-1'>More info</a>
<button id="announcement-1-2-3-2">Dismiss</button>
</div>
</div>
</div>
</div>
</div>
关于html - CSS 动画移动位置与变换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38034895/
我正在寻找一种简单的解决方案来将对象从一个地方移动和缩放到另一个地方。 我做了一个JSfiddle用这个代码。问题是我需要它在某个时刻停止变小。所以它有一个最小尺寸,另一个问题是我希望它既缩小又向左移
我正在尝试通过沿 x 轴上下翻转(180 度)来为悬停时的图像设置动画。 就像here 除非我出于某种原因无法让它工作。 img { transition:all 2s ease-in-out
我想实例化一个 slider 约束,它允许 body 在 A 点和 B 点之间滑动。 为了实例化约束,我指定了两个物体进行约束,在这种情况下,一个动态物体被约束到静态世界,比如滑动门。 第三个和第四个
我想使用此功能旋转然后停止在特定点或角度。现在该元素只是旋转而不停止。代码如下: $(function() { var $elie = $("#bkgimg");
我正在尝试使用 CATransform3D 向 View 添加透视图。目前,这就是我得到的: 这就是我想要得到的: 我很难做到这一点。我完全迷失在这里。这是我的代码: CATransform3D t
我编写了一个图形用户界面,用户可以在其中在 (640x480) 窗口中绘制内容。它使该绘图成为一组存储在 Vector 数组中的点。 现在,我如何将这些点集平移到原点(0,0 窗口左上角)或将其放在指
我的应用程序中有两张图像相互叠加,分别表示为 foreground 和 background。对于这两个,我都使用 background-attachment: fixed 来确保图像始终彼此完全相同
如何在不损失质量的情况下应用旋转变换?我试过添加 translateZ(0) 但它无济于事。这是例子: svg { background-color: rgb(93, 193, 93); }
我有一个 div,我试图在悬停时缩放它(只是 Y)。问题是它在没有过渡的情况下运行良好。当我使用过渡时,div 在顶部缩放一点然后下降,检查 fiddle 。问题是如何防止 div 那样缩放?我希望它
我正在尝试使用 transform: scale 图像网格 http://movies.themodern-nerd.com/genre .从左向右滚动时它工作正常,悬停的图像将停留在其他图像之上,但
我正在查看 CSS3 Transform 并且想要一个既倾斜又旋转的盒子。 我试过使用: transform:rotate(80deg); -moz-transform:rotate(80deg);
当用户在图像父元素上执行 mousemove 时,我试图在 img 上添加平滑移动效果(此处为 .carousel-img)但我无法正常运行它。 我做错了什么? $('.carousel-img').
我有 div 元素在其他 div 元素中垂直对齐。 我使用以下方法对齐它们:position: relative;变换:翻译Y(-50%);顶部:50%。这很好用。 我现在想缩放元素(使用 jQuer
我在这个 fiddle 中使用 RotateX 后创建了 3D 效果: http://jsfiddle.net/vEWEL/11/ 但是,我不确定如何在这个 Fiddle 中的红色方 block 上实
使用 transform: scale(x.x) 而不是使用 width 和 height 属性进行传统的调整大小有什么缺点吗?缩放会产生质量较低的图像或其他什么吗? 最佳答案 Scale 生成总体上
我在一个点上有一个对象,比如相对于原点的 x、y、z。 我想对点应用一些变换,比如旋转和平移,并在变换后的点渲染对象。我正在使用 glTranslatef() 和 glRotatef() 函数。它看起
有没有办法将转换应用到插入了 :before 的元素上? 以下方法无效,但我愿意接受其他解决方案。 .itemclass:before { content: "➨"; transform:
我找到了这个:width/height after transform 和其他几个,但没有什么不是我正在寻找的。我想要的是将某些东西缩放到其大小的 50%(当然还有漂亮的动画过渡)并让页面布局重新调整
我想使用变换为元素位置设置动画。我怎么能在这个翻译中添加一些曲线(没什么特别的,只是不是一条完整的直线)?对于 jquery,我会使用效果很好的 easeInSine。 var a = documen
我试着写一个 TransformMesh功能。该函数接受一个 Mesh对象和 Matrix目的。这个想法是使用矩阵来转换网格。为此,我锁定了顶点缓冲区,并在每个顶点上调用了 Vector3::Tran
我是一名优秀的程序员,十分优秀!