Salve,
con CSS è possibile emulare il tag marquee così:
Codice:
<style>
.marquee {
height: 50px;
overflow: hidden;
position: relative;
background: #fefefe;
color: #333;
font-family: arial;
font-size: 30px;
border: 1px solid #4a4a4a;
}
.marquee p {
position: absolute;
width: 100%;
height: 100%;
margin: 0;
line-height: 50px;
text-align: center;
-moz-transform: translateX(100%);
-webkit-transform: translateX(100%);
transform: translateX(100%);
-moz-animation: scroll-left 2s linear infinite;
-webkit-animation: scroll-left 2s linear infinite;
animation: scroll-left 20s linear infinite;
}
@-moz-keyframes scroll-left {
0% {
-moz-transform: translateX(100%);
}
100% {
-moz-transform: translateX(-100%);
}
}
@-webkit-keyframes scroll-left {
0% {
-webkit-transform: translateX(100%);
}
100% {
-webkit-transform: translateX(-100%);
}
}
@keyframes scroll-left {
0% {
-moz-transform: translateX(100%);
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
100% {
-moz-transform: translateX(-100%);
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
</style>
E questo per applicarlo.
Codice HTML:
<div class="marquee">
<p> Questo è un esempio di marquee in CSS </p>
</div>
La grafica poi potrà modificarla come meglio crede per conformarla a quella del sito. Mentre nel tag <p> </p> dovrà inserire il codice che si occupa mostrare le notizie.
Riaguardo a come implemantarlo su Joomla, può farlo ad esempio con un plugin per gli snippet come questo.
Cordiali saluti.