<?php
$links = [
["text" => "第1个链接:府城卫生院党建", "url" => "/home.php"],
["text" => "第2个链接:府城卫生院日常", "url" => "/about.php"],
["text" => "第3个链接:府城卫生院创新", "url" => "/products.php"],
["text" => "第4个链接:府城卫生院活动", "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: 500px;
line-height: 50px;
animation: scroll 10s linear infinite;
}
.scroll-item {
display: block;
padding: 5px 20px;
text-decoration: none;
color: yellow;
backgroud-color: blue;
}
@keyframes scroll {
from {
transform: translateY(100%);
}
to {
transform: translateY(-100%);
}
}
</style>