我可以向iframe添加方向箭头吗?

时间:2018-06-04 12:29:52

标签: php html iframe carousel

我想知道iframe是否是正确的解决方法,我目前正在显示从mysql中的url中提取的随机视频。我想要实现的是一个旋转木马效果,左侧有导航箭头,我也希望它突出,所以它在一条线上。最终这将显示10个随机视频,但我正在努力让它按照我的意愿行事。我应该转储iframe并查看备选方案吗?如何随意拉动随机视频。 (希望有道理)

守则:

if($getRows->num_rows > 0) {
while($row = $getRows->fetch_assoc()) {
$iframes .= '<iframe style="padding:6px;" width="250" height="300"
scrolling="auto" src="https://www.youtube.com/embed/'.$row['Youtube'].'"
frameborder="1" allow="autoplay; encrypted-media" allowfullscreen></iframe>';
}
}

?>

<div class="ws_images"><ul>
<?=$iframes;?>
</ul></div>

How it displays on the page

感谢您的帮助。

0 个答案:

没有答案