The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#3
|
|||
|
|||
![]()
Marquee tag is obsolete, though it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
Alternative is a little css and html HTML Code:
<div class="marquee"> <p><img src="path/to/img.jpg" alt="blah blah blah" /></p> </div> Code:
.marquee { background:#000; box-sizing: border-box; color: #fff; overflow: hidden; white-space: nowrap; width: 100%; } .marquee p { display: inline-block; padding-left: 100%; animation: marquee 15s linear infinite; } @keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|