<?php
$links = [
["text" => "首页", "url" => "/home.php"],
["text" => "关于我们", "url" => "/about.php"],
["text" => "产品介绍", "url" => "/products.php"],
["text" => "联系我们", "url" => "/contact.php"],
];
echo '<div class="scroll-container">';
foreach ($links as $link) {
echo '<a href="'.$link['url'].'" class="scroll-item">'.$link['text'].'</a> ';
}
echo '</div>';
?>
<style>
.scroll-container {
width: 100%;
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
position: relative;
height: 50px;
line-height: 50px;
animation: scroll 10s linear infinite;
flex-direction: column;
}
.scroll-item {
display: block;
padding: 0 20px;
text-decoration: none;
color: #FF4C00;
}
@keyframes scroll {
from {
transform: translateY(100%);
}
to {
transform: translateY(-100%);
}
}
</style>