全て。私は自分のウェブサイトに取り組んでいます。私は動画のバナーを作成しました。私の問題は、動画のバナーに 4D または 5D の画像を表示したいということです。 OPZET インドは私のウェブサイトです。私のスニペットはここにあります。
<head>
<style type="text/css">
.banner{
position:absolute;
background:url(http://previews.123rf.com/images/iimages/iimages1206/iimages120600296/13935384-Illustration-of-empty-yard-and-school-Stock-Vector-road-school-cartoon.jpg);
-webkit-animation:100s scroll infinite linear;
-moz-animation:100s scroll infinite linear;
-o-animation:100s scroll infinite linear;
-ms-animation:100s scroll infinite linear;
animation:100s scroll infinite linear;
top:0;
left:0;
width:100%;
height:100%;
text-align:center;
}
@-webkit-keyframes scroll{
100%{
background-position:3000px 0px;
}
}
@-moz-keyframes scroll{
100%{
background-position:3000px 0px;
}
}
@-o-keyframes scroll{
100%{
background-position:3000px 0px;
}
}
@-ms-keyframes scroll{
100%{
background-position:3000px 0px;
}
}
@keyframes scroll{
100%{
background-position:3000px 0px;
}
}
</style>
</head>
<body>
<div class="banner">
<h1>OPZET India</h1>
</div>
</body>
Webのバナーをこの参考サイトのようにしたい