我一直在尝试用Google搜索Adobe Premiere Pro CC 2017中的闪烁颜色效果,但无法搜索如何执行。我什至不知道在Premiere Pro中是否有可能。我想做两件事。
请让我知道如何在Premiere Pro或Powerpoint中实现此目标,如果在Premiere Pro和Powerpoint中无法做到这一点,我应该使用什么软件来创建背景变化的彩色视频
html,
body {
height: 100%;
}
.mydiv {
width:100%;
height:100%;
color:black;
font-weight:bold;
animation: myanimation 10s infinite;
}
@keyframes myanimation {
0% {background-color: red;}
25%{background-color:yellow;}
50%{background-color:green;}
75%{background-color:brown;}
100% {background-color: red;}
}
<div class="mydiv">The background-color changes in time</div>
。
谢谢