You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
4.0 KiB
HTML
144 lines
4.0 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css"/>
|
|
<style>
|
|
|
|
body .ui-selecting { border:2px solid yellow; }
|
|
body .ui-selected {border:2px solid black;}
|
|
|
|
body {overflow: scroll;}
|
|
#scape_container{overflow: scroll;width: 100%; height:100vh;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id ="scape_container">
|
|
|
|
|
|
{% for book in books|sort(attribute='title', reverse = False) %}
|
|
<div class = "drag" id = "{{ book.id }}" style="position: absolute;width:40px;height:auto; top:{{ book.scapeY }}px; left:{{ book.scapeX }}px;">
|
|
|
|
|
|
<img class="no_cover" id="{{ book.title }}" src="../uploads/cover/{{ book.cover }}" style="width:100%;height:auto;" onerror="if (this.src != '../static/img/default_cover.png') this.src = '../static/img/default_cover.png';">
|
|
<p style="font-size:7px;"><a href="books/{{ book.id }}">{{ book.title }}</a></p>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<div id="random" style="padding:2px; margin: 0;position: absolute;width:120px;height:20px;background-color:yellow;z-index:999999999999999999900000000000000;cursor:pointer;">
|
|
<p style="padding:0; margin: 0;position: absolute; ">random position</p>
|
|
|
|
</div>
|
|
</div>
|
|
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
|
|
<script src="{{ url_for("static", filename="js/app.js") }}"></script>
|
|
<script>
|
|
|
|
|
|
|
|
$( ".no_cover" ).each(function() {
|
|
var string = $(this).attr('id');
|
|
var randomColor = colorHash(string).rgb
|
|
|
|
$(this).css({
|
|
'background-color' : randomColor,
|
|
});
|
|
|
|
}
|
|
)
|
|
|
|
function colorHash(inputString){
|
|
var sum = 0;
|
|
|
|
for(var i in inputString){
|
|
sum += inputString.charCodeAt(i);
|
|
}
|
|
|
|
r = ~~(('0.'+Math.sin(sum+1).toString().substr(6))*256);
|
|
g = ~~(('0.'+Math.sin(sum+2).toString().substr(6))*256);
|
|
b = ~~(('0.'+Math.sin(sum+3).toString().substr(6))*256);
|
|
|
|
var rgb = "rgb("+r+", "+g+", "+b+")";
|
|
|
|
var hex = "#";
|
|
|
|
hex += ("00" + r.toString(16)).substr(-2,2).toUpperCase();
|
|
hex += ("00" + g.toString(18)).substr(-2,2).toUpperCase();
|
|
hex += ("00" + b.toString(20)).substr(-2,2).toUpperCase();
|
|
|
|
return {
|
|
r: r
|
|
,g: g
|
|
,b: b
|
|
,rgb: rgb
|
|
,hex: hex
|
|
};
|
|
}
|
|
|
|
</script>
|
|
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
|
|
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
|
|
<script>
|
|
$( function() {
|
|
$( ".drag" ).draggable({ stack: ".drag",
|
|
stop: function(){
|
|
var offset = $(this).offset();
|
|
var id = $(this).attr('id');
|
|
var xPos = offset.left;
|
|
var yPos = offset.top;
|
|
console.log(xPos);
|
|
console.log(yPos);
|
|
|
|
var postForm = { //Fetch form data
|
|
'id' : id,
|
|
'x' : xPos, //Store name fields value,
|
|
'y' : yPos
|
|
};
|
|
|
|
$.ajax({ //Process the form using $.ajax()
|
|
type : 'POST', //Method type
|
|
url : '/scape', //Your form processing file URL
|
|
data : postForm, //Forms name
|
|
dataType : 'json'
|
|
});
|
|
|
|
|
|
} });
|
|
|
|
} );
|
|
|
|
$( function() {
|
|
$( ".drag" ).resizable({aspectRatio: true});
|
|
} );
|
|
/* $( function() {
|
|
$( "body" ).selectable();
|
|
} );*/
|
|
|
|
$( "#random" ).click(function() {
|
|
console.log("hallo");
|
|
$( ".drag" ).each(function() {
|
|
var id = $(this).attr('id');
|
|
var postForm = { //Fetch form data
|
|
'id' : id,
|
|
'x' : Math.floor(Math.random() * window.innerWidth) , //Store name fields value,
|
|
'y' : Math.floor(Math.random() * window.innerHeight)
|
|
};
|
|
$( this ).css("top", postForm['y']);
|
|
$( this ).css("left", postForm['x']);
|
|
|
|
$.ajax({ //Process the form using $.ajax()
|
|
type : 'POST', //Method type
|
|
url : '/scape', //Your form processing file URL
|
|
data : postForm, //Forms name
|
|
dataType : 'json'
|
|
});
|
|
|
|
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|