Hallo zusammen
Ich versuche seit längerem folgenden code in ein bbcode um zu wandeln, dass in phpbb3 3.3.1.4 auch läuf
Code: Alles auswählen
<style> /* Blink-Effekt mit sanftem Übergang */ 
@keyframes smooth-blink 
      { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } 
      
     .smooth-blink { animation: smooth-blink 4s ease-in-out infinite; 
</style> 
<body> 
<p class="smooth-blink" style="text-align: center;"> Dieser Text blinkt geschmeidig!!</p> 
</body>Also ab in acp, beitrage, bbcodes
Benutzung
Code: Alles auswählen
[blink]{TEXT}[/blink]Code: Alles auswählen
<style>
@keyframes smooth-blink 
      { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } 
      
     .smooth-blink { animation: smooth-blink 4s ease-in-out infinite; 
</style> 
 
<p class="smooth-blink" style="text-align: center;">{TEXT}</p>Code: Alles auswählen
Text blinken lassen: [blink]{TEXT}[/blink]






