Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/37.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css 如何在Outlook 2016中使文本闪烁?_Css_Outlook_Signature - Fatal编程技术网

Css 如何在Outlook 2016中使文本闪烁?

Css 如何在Outlook 2016中使文本闪烁?,css,outlook,signature,Css,Outlook,Signature,我尝试了动画gif(Outlook仅渲染第一个面板)。我尝试过这个css选项(作为签名和“插入HTML作为文本”): lee .眨眼{ 动画:闪烁文字0.8s无限; } @关键帧闪烁文本{ 0%{color:#000;} 49%{颜色:透明;} 50%{颜色:透明;} 99%{颜色:透明;} 100%{颜色:#000;} } 这个人一直用错误的名字称呼我,这已经成为一个流传的笑话。我已经在我的电子邮件上签名,我的名字都是大写、粗体、斜体等等,他们从来没有注意到 所以我想试试闪烁文本选项 谢谢

我尝试了动画gif(Outlook仅渲染第一个面板)。我尝试过这个css选项(作为签名和“插入HTML作为文本”):

lee
.眨眼{
动画:闪烁文字0.8s无限;
}
@关键帧闪烁文本{
0%{color:#000;}
49%{颜色:透明;}
50%{颜色:透明;}
99%{颜色:透明;}
100%{颜色:#000;}
}
这个人一直用错误的名字称呼我,这已经成为一个流传的笑话。我已经在我的电子邮件上签名,我的名字都是大写、粗体、斜体等等,他们从来没有注意到

所以我想试试闪烁文本选项


谢谢

你可能应该能够使用过时的
Lee
标签作为一个笑话,对我来说似乎很公平;)
<span class="blinking">lee</span>
<style type="text/css">
 .blinking{
    animation:blinkingText 0.8s infinite;
}

@keyframes blinkingText{
    0%{     color: #000;    }
    49%{    color: transparent; }
    50%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #000;    }
}

</style>