lots of improvements:
hover animation correct jumpback position after video view load when scroll - not all at beginning
This commit is contained in:
		@@ -1,35 +1,43 @@
 | 
			
		||||
.myvideo{
 | 
			
		||||
.myvideo {
 | 
			
		||||
    width: 80%;
 | 
			
		||||
    margin-left: 10%;
 | 
			
		||||
    float: left;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.previewcontainer{
 | 
			
		||||
.previewcontainer {
 | 
			
		||||
    margin-left: 10%;
 | 
			
		||||
    width: 80%;
 | 
			
		||||
    margin-right: 10%;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.videopreview{
 | 
			
		||||
.videopreview {
 | 
			
		||||
    height: 300px;
 | 
			
		||||
    width: 30%;
 | 
			
		||||
    float: left;
 | 
			
		||||
    margin: 1%;
 | 
			
		||||
    background-color: #7F7F7F;
 | 
			
		||||
    cursor: pointer;
 | 
			
		||||
    opacity: 0.9;
 | 
			
		||||
}
 | 
			
		||||
.previewtitle{
 | 
			
		||||
 | 
			
		||||
.videopreview:hover {
 | 
			
		||||
    opacity: 1;
 | 
			
		||||
    transition: opacity 0.5s;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.previewtitle {
 | 
			
		||||
    height: 10%;
 | 
			
		||||
}
 | 
			
		||||
.previewpic{
 | 
			
		||||
 | 
			
		||||
.previewpic {
 | 
			
		||||
    height: 90%;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.hideit{
 | 
			
		||||
.hideit {
 | 
			
		||||
    display: none;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.closebutton{
 | 
			
		||||
.closebutton {
 | 
			
		||||
    height: 15px;
 | 
			
		||||
    background-color: #FF0000;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										32
									
								
								index.html
									
									
									
									
									
								
							
							
						
						
									
										32
									
								
								index.html
									
									
									
									
									
								
							@@ -1,37 +1,29 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html lang="en" dir="ltr">
 | 
			
		||||
  <head>
 | 
			
		||||
<head>
 | 
			
		||||
    <meta charset="utf-8">
 | 
			
		||||
    <title></title>
 | 
			
		||||
    <link rel="stylesheet" href="css/plyr.css" />
 | 
			
		||||
    <title>hub</title>
 | 
			
		||||
    <link rel="stylesheet" href="css/plyr.css"/>
 | 
			
		||||
    <link rel="stylesheet" href="css/index.css">
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
 | 
			
		||||
    <script src="js/plyr.js"></script>
 | 
			
		||||
 | 
			
		||||
    <script>
 | 
			
		||||
 | 
			
		||||
    </script>
 | 
			
		||||
    <script src="js/index.js"></script>
 | 
			
		||||
  </head>
 | 
			
		||||
  <body>
 | 
			
		||||
    <h1>lukis pornhub</h1>
 | 
			
		||||
    <div class="videopagewrapper hideit">
 | 
			
		||||
</head>
 | 
			
		||||
<body>
 | 
			
		||||
<h1>lukis pornhub</h1>
 | 
			
		||||
<div class="videopagewrapper hideit">
 | 
			
		||||
    <div class="closebutton">
 | 
			
		||||
 | 
			
		||||
    </div>
 | 
			
		||||
      <div class="videowrapper">
 | 
			
		||||
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="videowrapper"></div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
<div class="previewcontainer">
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    <div class="previewcontainer">
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  </body>
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										60
									
								
								js/index.js
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								js/index.js
									
									
									
									
									
								
							@@ -1,37 +1,57 @@
 | 
			
		||||
$(document).ready(function() {
 | 
			
		||||
  console.log("finished loading page");
 | 
			
		||||
  $.post('php/videoload.php','action',function(data){
 | 
			
		||||
    console.log(data);
 | 
			
		||||
    for (var i in data) {
 | 
			
		||||
      if (data[i] != "." && data[i] != "..") {
 | 
			
		||||
        //loadVideo("videos/prn/"+data[i],"");
 | 
			
		||||
        loadPreview(data[i]);
 | 
			
		||||
        console.log(data[i]);
 | 
			
		||||
      }
 | 
			
		||||
var videos;
 | 
			
		||||
var loadindex = 0;
 | 
			
		||||
var scrollposition = 0;
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
  },'json');
 | 
			
		||||
  //loadVideo("https://cdn.plyr.io/static/demo/View_From_A_Blue_Moon_Trailer-1080p.mp4",'https://cdn.plyr.io/static/demo/View_From_A_Blue_Moon_Trailer-HD.jpg');
 | 
			
		||||
$(document).ready(function () {
 | 
			
		||||
    $.post('php/videoload.php', 'action', function (data) {
 | 
			
		||||
        videos = data;
 | 
			
		||||
        loadPreviewBlock(12);
 | 
			
		||||
    }, 'json');
 | 
			
		||||
 | 
			
		||||
  $(".closebutton").click(function() {
 | 
			
		||||
    $(".closebutton").click(function () {
 | 
			
		||||
        $(".videopagewrapper").hide();
 | 
			
		||||
        $(".previewcontainer").show();
 | 
			
		||||
        // scroll back to last scroll position
 | 
			
		||||
        $(window).scrollTop(scrollposition);
 | 
			
		||||
        $(".videowrapper").html("");
 | 
			
		||||
    });
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
$(window).scroll(function () {
 | 
			
		||||
    if ($(window).scrollTop() >= (($(document).height() - $(window).height() - 60))) {
 | 
			
		||||
        if ($(".videowrapper").html() == "") {
 | 
			
		||||
            loadPreviewBlock(6);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
function loadPreviewBlock(nr) {
 | 
			
		||||
    for (let i = 0; i < nr; i++) {
 | 
			
		||||
        if (loadindex + i < videos.length) {
 | 
			
		||||
            if (videos[loadindex + i] != "." && videos[loadindex + i] != "..") {
 | 
			
		||||
                loadPreview(videos[loadindex + i]);
 | 
			
		||||
            } else {
 | 
			
		||||
                nr++;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    loadindex += nr;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function loadPreview(src) {
 | 
			
		||||
  var preview = $("<div class='videopreview'><div class='previewtitle'>"+src+"</div><div class='previewpic'><img style='width:100%;height:100%' src=\"videos/thumbnails/"+src+".jpg\" alt='no thumbnail found'></img></div></div>");
 | 
			
		||||
  preview.attr('videourl',"videos/prn/"+src);
 | 
			
		||||
  preview.attr('thumbnailurl',"videos/thumbnails/"+src);
 | 
			
		||||
  preview.click(function() {
 | 
			
		||||
    var preview = $("<div class='videopreview'><div class='previewtitle'>" + src + "</div><div class='previewpic'><img style='width:100%;height:100%' src=\"videos/thumbnails/" + src + ".jpg\" alt='no thumbnail found'></img></div></div>");
 | 
			
		||||
    preview.attr('videourl', "videos/prn/" + src);
 | 
			
		||||
    preview.attr('thumbnailurl', "videos/thumbnails/" + src);
 | 
			
		||||
    preview.click(function () {
 | 
			
		||||
        console.log("preview clicked");
 | 
			
		||||
    loadVideo($(this).attr("videourl"),$(this).attr("thumbnailurl")+".jpg");
 | 
			
		||||
        scrollposition = $(window).scrollTop();
 | 
			
		||||
        loadVideo($(this).attr("videourl"), $(this).attr("thumbnailurl") + ".jpg");
 | 
			
		||||
    });
 | 
			
		||||
    $(".previewcontainer").append(preview);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function loadVideo(src,posterlink) {
 | 
			
		||||
function loadVideo(src, posterlink) {
 | 
			
		||||
    $(".videowrapper").html("<div class='myvideo'><video controls crossorigin playsinline id='player'></video></div>");
 | 
			
		||||
 | 
			
		||||
    const player = new Plyr('#player');
 | 
			
		||||
 
 | 
			
		||||
@@ -5,8 +5,7 @@ $user = "mwit";
 | 
			
		||||
$password = "3MnDApF3bu6XDGOE";
 | 
			
		||||
$database = "mwitdb";
 | 
			
		||||
 | 
			
		||||
$mysqli = new mysqli($server, $user, $password,$database);
 | 
			
		||||
if($mysqli->connect_errno)
 | 
			
		||||
{
 | 
			
		||||
echo "connecton failed... nr: ". $mysqli->connect_errno. " -- " . $mysqli->connect_error;
 | 
			
		||||
$mysqli = new mysqli($server, $user, $password, $database);
 | 
			
		||||
if ($mysqli->connect_errno) {
 | 
			
		||||
    echo "connecton failed... nr: " . $mysqli->connect_errno . " -- " . $mysqli->connect_error;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user