63 lines
1.3 KiB
HTML
Executable File
63 lines
1.3 KiB
HTML
Executable File
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta http-equiv="refresh" content="14;url=http://localhost:7777/frames.html" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<link href="css/jquery.simpleTxtSlider.css" rel="stylesheet">
|
||
<link stylesheet="css/font.css"/>
|
||
<script src="js/jquery.min.js"></script>
|
||
<script src="js/jquery.simpleTxtSlider.js"></script>
|
||
<script>
|
||
$(function(){
|
||
$.simpleTxtSlider($("#pakainfo-txtslider-fade-example"),{'effectType':'fade'});
|
||
});
|
||
</script>
|
||
|
||
<style>
|
||
div.txtslider{
|
||
position: fixed; /* or absolute */
|
||
top: 25%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
font-family: Raleway;
|
||
font-weight: bold;
|
||
font-size: 120px;
|
||
color: #38DAFF;
|
||
}
|
||
div.txtslider ul{
|
||
margin: auto;
|
||
}
|
||
#myVideo {
|
||
position: fixed;
|
||
right: 0;
|
||
bottom: 0;
|
||
min-width: 100%;
|
||
min-height: 100%;
|
||
}
|
||
</style>
|
||
<script>
|
||
$(function(){
|
||
$.simpleTxtSlider($("#pakainfo-txtslider-roll-example"),{
|
||
delay : 3500, effectType : 'slide',
|
||
speed : 1500
|
||
});
|
||
|
||
});
|
||
</script>
|
||
|
||
</head>
|
||
<body>
|
||
<video autoplay loop id="myVideo">
|
||
<source src="vids/blurred2.mp4" type="video/mp4">
|
||
</video>
|
||
<div id="pakainfo-txtslider-roll-example" class="txtslider">
|
||
<ul>
|
||
<li>Hello....</li>
|
||
<li>We’re on a mission to unf*ck Kubernetes.</li>
|
||
<li>Are you in?</li>
|
||
<li><img src="img/Portainer-large-alt-positive.png"></li>
|
||
</ul>
|
||
</div>
|
||
</body>
|
||
</html> |