如何在 wordpress 中从 elementor 获取短代码?

问题描述 投票:0回答:0

我有 CSS 代码,它是动画脉冲按钮并添加到 elementor 但我想要我将在我的 wordpress 单篇文章中使用的短代码,这里是代码

CSS

.pulse-button {
box-shadow: 0 0 0 rgba(255,255,255, 0.9);
animation: pulse 2s infinite;
}
.pulse-button:hover {
animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
0% {
-webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.9);
}
70% {
-webkit-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
}
}
@keyframes pulse {
0% {
-moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
box-shadow: 0 0 0 0 rgba(255,255,255, 0.9);
}
70% {
-moz-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
box-shadow: 0 0 0 10px rgba(255,255,25544, 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
box-shadow: 0 0 0 0 rgba(255,255,255, 0);
}

我的 wordpress 博客文章需要 HTML 代码和工作的 css 代码

html wordpress animation button css-animations
© www.soinside.com 2019 - 2024. All rights reserved.