- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个“烟花”动画,它会围绕一个圆形图像爆炸,10 条均匀分布的射线像轮辐一样射出。每个“辐条”都展开到它的全长,“尾部”追上“头”,最后消失。我有第一个从底部出来:
HTML:
<div id="firework"></div>
CSS:
#firework {
background-color: red;
border-radius: 30%;
height: 0px;
margin: 0px 0px;
width: 2px;
-webkit-animation: firework-0 1s 1;
}
@-webkit-keyframes firework-0 {
0% {
height: 0px;
margin-top: 0px;
}
50% {
height: 64px;
margin-top: 0px;
}
100% {
height: 0px;
margin-top: 64px;
}
}
fiddle :http://jsfiddle.net/xcWge/1407/
每 36 度复制一次的最佳方法是什么?我尝试创建从顶部出来的那个,但我认为我不能继续使用此边距属性来获得相同的头/尾效果。我读过关于围绕一个圆圈放置东西(Position icons into circle)但我也需要保持相同的径向动画效果,这让我很困惑。
最佳答案
使用带有纯 CSS 的单个元素来完成您正在寻找的事情将非常困难(如果不是不可能的话)。我们可以通过使用尽可能多的元素来做到这一点。需要的辐条数。将辐条绝对定位在特定位置并旋转所需的 Angular 。原点应固定在元素的底部,以便它们都汇聚到一个点。
动画本身可以通过使用 linear-gradient
和动画他们的位置来实现。
.firework {
position: absolute;
top: 100px;
left: 100px;
border-radius: 30%;
height: 64px;
width: 2px;
background: linear-gradient(to top, red, red);
background-repeat: no-repeat;
background-size: 100% 64px;
background-position: 0px -64px;
transform-origin: bottom;
animation: firework-0 1s 1;
}
.firework:nth-child(2){
transform: rotate(36deg)
}
.firework:nth-child(3){
transform: rotate(72deg)
}
.firework:nth-child(4){
transform: rotate(108deg)
}
.firework:nth-child(5){
transform: rotate(144deg)
}
.firework:nth-child(6){
transform: rotate(180deg)
}
.firework:nth-child(7){
transform: rotate(216deg)
}
.firework:nth-child(8){
transform: rotate(252deg)
}
.firework:nth-child(9){
transform: rotate(288deg)
}
.firework:nth-child(10){
transform: rotate(324deg)
}
@keyframes firework-0 {
0% {
background-position: 0px 64px;
}
50% {
background-position: 0px 0px;
}
100% {
background-position: 0px -64px;
}
}
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
注意:没有。如果使用伪元素,可以大大减少元素的数量,但我会留给你。
不在中心相交的线:
如果您需要它们不聚集在一个点上并且看起来像它们分开而是围绕一个圆圈放置,那么动画会变得有点复杂。它需要一个渐变,它的一半大小是透明的,而另一半是彩色的。通过动画背景的大小和位置,可以实现所需的效果。
背景位置中的 calc
很关键,因为它使渐变相对于元素的底部定位,从而使动画按预期工作。
.firework {
position: absolute;
top: 100px;
left: 100px;
border-radius: 30%;
height: 64px;
width: 2px;
background: linear-gradient(to top, transparent 32px, red 32px);
background-repeat: no-repeat;
background-size: 100% 64px;
background-position: 100% calc(100% - 32px);
transform-origin: bottom;
animation: firework-0 1s 1;
}
.firework:nth-child(2) {
transform: rotate(36deg)
}
.firework:nth-child(3) {
transform: rotate(72deg)
}
.firework:nth-child(4) {
transform: rotate(108deg)
}
.firework:nth-child(5) {
transform: rotate(144deg)
}
.firework:nth-child(6) {
transform: rotate(180deg)
}
.firework:nth-child(7) {
transform: rotate(216deg)
}
.firework:nth-child(8) {
transform: rotate(252deg)
}
.firework:nth-child(9) {
transform: rotate(288deg)
}
.firework:nth-child(10) {
transform: rotate(324deg)
}
@keyframes firework-0 {
0% {
background-size: 100% 32px;
background-position: 100% calc(100% - 0px);
}
50% {
background-size: 100% 64px;
background-position: 100% calc(100% - 0px);
}
100% {
background-size: 100% 32px;
background-position: 100% calc(100% - 32px);
}
}
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
<div class="firework"></div>
对于这样的效果,我的建议是使用 SVG,因为 SVG 是创建它们的正确工具。它的创建和维护也相当简单。
我们只需要 10 line
从一个点到另一个点画一条线的元素,给它一个虚线填充,然后动画 stroke-dashoffset
以获得所需的效果。
线在中心相交:
对于这种效果,必须创建线条,使第一个坐标 (x,y) 成为假想圆 (32,32) 的中心。对于第二个坐标,我们应该根据直线的 Angular 在假想的圆上找到点。公式描述here .
注意:在 SVG 中,0 度对应于 3 点钟位置。
svg{
width: 128px;
height: 128px;
}
line{
stroke: red;
animation: firework 1s 1;
stroke-dasharray: 32 32; /* radius radius */
stroke-dashoffset: -32; /* -radius */
}
@keyframes firework{
from{
stroke-dashoffset: 32; /* radius */
}
to{
stroke-dashoffset: -32; /* -radius */
}
}
<svg viewBox='0 0 64 64'>
<g>
<line x1='32' y1='32' x2='32' y2='0' />
<line x1='32' y1='32' x2='50.80' y2='6.11' />
<line x1='32' y1='32' x2='62.43' y2='22.11' />
<line x1='32' y1='32' x2='62.43' y2='41.88' />
<line x1='32' y1='32' x2='50.80' y2='57.88' />
<line x1='32' y1='32' x2='32' y2='64' />
<line x1='32' y1='32' x2='13.19' y2='57.88' />
<line x1='32' y1='32' x2='1.56' y2='41.88' />
<line x1='32' y1='32' x2='1.56' y2='22.11' />
<line x1='32' y1='32' x2='13.19' y2='6.11' />
</g>
</svg>
不在中心相交的线:(但它们的投影会)
为了达到这个效果,我们应该为两个坐标沿两个圆寻找点。第一个坐标将位于半径小于第一个(本演示中为 16)的内圆上。第二个将在较大的圆上(本演示中的半径 = 32)。
svg{
width: 128px;
height: 128px;
}
line{
stroke: red;
animation: firework 1s 1;
stroke-dasharray: 16 16; /* length of the line length of the line */
stroke-dashoffset: -16; /* -length */
}
@keyframes firework{
from{
stroke-dashoffset: 16; /* length */
}
to{
stroke-dashoffset: -16; /* length */
}
}
<svg viewBox='0 0 64 64'>
<g>
<line x1='32' y1='16' x2='32' y2='0' />
<line x1='41.40' y1='19.05' x2='50.80' y2='6.11' />
<line x1='47.21' y1='27.05' x2='62.43' y2='22.11' />
<line x1='47.21' y1='36.94' x2='62.43' y2='41.88' />
<line x1='41.40' y1='44.94' x2='50.80' y2='57.88' />
<line x1='32' y1='48' x2='32' y2='64' />
<line x1='22.59' y1='44.94' x2='13.19' y2='57.88' />
<line x1='16.78' y1='36.94' x2='1.56' y2='41.88' />
<line x1='16.78' y1='27.05' x2='1.56' y2='22.11' />
<line x1='22.59' y1='19.05' x2='13.19' y2='6.11' />
</g>
</svg>
关于css - 围绕圆圈复制动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36324976/
这是一种复杂的情况。我正在重构(从头开始)c++,它必须用作 CGI 脚本和独立应用程序的核心。 遗憾的是,我从大学开始就没有写过C++,对c#/Java比较熟悉。所以我打算将 WPF 用于 GUI。
您好,我正在尝试找出与此线程中提出的问题相同的问题 How to use CSS to surround a number with a circle? 但是 - 每次我这样做时,形状都会变成椭圆形,
如果您在单个语句中执行某些操作,例如“abc”+ stringval +“abc”,那么是一个不可变的字符串副本,还是两个(注意 abc 和 123 在编译时是常量) 奖励回合:使用像下面这样的 St
我正在尝试创建一个查询,该查询只会在满足某些条件的情况下添加 AND 子句。 这就是我所追求的: SELECT DISTINCT id name active FROM team WHER
在使用 Google 的出色绘图工具进行了一些试验后,我正在使用 Gnuplot 绘制几个 3D 图形。我喜欢 Google 工具的一件事是它在表面周围绘制的“边界框”,这让我更容易看到大小。 有没有
我们最近从solr迁移到 Elasticsearch 。 因此决定以自定义查询格式编写一个包装器,该包装器将转换为 Elasticsearch 查询。将来,如果我们更改为另一个数据存储,则只需要修改此
我有以下内容将音频剪辑的频率绘制为条形音箱: const drawSinewave = function() { requestAnimationFrame(drawSinewave);
我试图围绕其父矩形的中心旋转一个矩形。 child 到 parent 边界的距离必须始终保持不变。我几乎成功了,但我的方法似乎有一个小错误。我似乎找不到问题所在。 示例: http://jsfiddl
我有一个帮助类来将用户对象保存到共享首选项。我用过 serialize(): String函数和 create(serializedString: String)我的 User 中的函数数据模型。他们
是否可以围绕 UIBezierPath 的可见部分绘制路径? 这是我的问题的一个例子 这是我想要完成的 这是我到目前为止得到的: - (void)drawRect:(CGRect)rect { C
这里,AsciiChecker启用文本形式的矩阵规范。 abstract class AsciiChecker extends AlgoritmicChecker { String[] asc
目前,我有十个不同的查询,它们通过 JDBC 处理,并包装在返回 ResultSet 的函数中。这些 ResultSet 对象中的每一个都由外部程序进行迭代,并将通过其索引而不是根据要求的列名进行访问
围绕 finder 方法启动事务是否明智: @Transactional public E getParticularEvent(final String id) { return (E)em
我需要一个围绕 Canvas 边缘移动的圆圈。向右然后向下移动可以正常工作,但是当它需要向左移动时,它会跳到右下角并开始一次又一次地向右移动。我不知道如何解决这个问题。 var can = doc
我正在尝试我的第一个 jQuery 插件。 (耶……时间到了!) 我很难思考如何让一个可公开访问的函数正常启动。 代码 (function($, doc, win){ "use strict"
在阅读了很多关于绕相机旋转的指南并询问了一些关于 SO 的其他问题后,我想到了 SSCCE我到目前为止所拥有的。也许这样其他人会更容易理解我需要什么,对我来说答案是什么。 到目前为止它看起来像这样:
这里是 Java 菜鸟!我正在努力为我正在编写的 Android 应用程序画龙点睛。本质上,它是一个 RSS 阅读器。异步任务获取 RSS 提要。然后对其进行解析,我想做的最后一点是使用已解析的 RS
我有以下代码,从数据库的“类(class)”表中选择标题和图像。 setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
我正在尝试实现一个表盘,其中一只手的位图图像围绕 Canvas 上的表盘中心旋转。 基本上在 onDraw() 方法中,我希望能够将图像资源放到 Canvas 上,然后每秒旋转一次。 我有每秒触发一次
我从 SwingX 找到了一个名为 JXLoginPane 的组件在 WindowBuilder 中可用,这似乎是我尝试做的事情的一个很好的起点,但我需要有关如何使用它的更多信息。到目前为止,我发现唯
我是一名优秀的程序员,十分优秀!