@ -10,10 +10,6 @@
// Open window icon (on background 'desktop')
// Open window icon (on background 'desktop')
// Close window button (on 'window' itself)
// Close window button (on 'window' itself)
$ ( document ) . ready ( function ( ) {
let corpi = {
let corpi = {
0 : {
0 : {
id : 'xpub' ,
id : 'xpub' ,
@ -35,18 +31,44 @@ $(document).ready(function(){
title : 'let greetings' ,
title : 'let greetings' ,
content : 'We are pleased to invite you to window.open(), a day-long festival, held by students and alumni of the Master of Experimental Publishing (XPUB) at Page Not Found.'
content : 'We are pleased to invite you to window.open(), a day-long festival, held by students and alumni of the Master of Experimental Publishing (XPUB) at Page Not Found.'
} ,
} ,
}
}
// generate divs
$ ( document ) . ready ( function ( ) {
// generate divs
Object . values ( corpi ) . forEach ( corpus => {
Object . values ( corpi ) . forEach ( corpus => {
$ ( '#boxes' ) . append ( ` <div class="ui-widget-content draggable resizable" id=" ${ corpus [ 'id' ] } "><h1> ${ corpus [ 'title' ] } </h1><p> ${ corpus [ 'content' ] } </p><button class="closable">X</button></div> ` )
$ ( '#boxes' ) . append ( `
$ ( "#icons" ) . append ( ` <button onclick=" $ ( ${ corpus [ 'id' ] } ).fadeIn()" class="icon"> ${ corpus [ "glyph" ] } </button> ` )
< div class = "ui-widget-content draggable resizable" id = "${corpus['id']}" >
< h1 > $ { corpus [ 'title' ] } < / h 1 >
< p > $ { corpus [ 'content' ] } < / p >
< button class = "closable" > X < / b u t t o n >
< / d i v >
` )
$ ( '#icons' ) . append ( ` <button onclick=" $ ( ${ corpus [ 'id' ] } ).fadeIn()" class="icon"> ${ corpus [ "glyph" ] } </button> ` )
} ) ;
const dragResize = new DragResizeClose ( ) ;
} ) ;
} ) ;
class DragResizeClose {
constructor ( ) {
this . zIndex = 3 ;
this . drag ( ) ;
this . setDraggables ( ) ;
this . setZindex ( ) ;
this . handleCursor ( ) ;
this . closeBtn ( ) ;
}
drag ( ) {
$ ( '.draggable' ) . draggable ( { containment : "window" } , { // Setup dragging and containment
start : ( event , ui ) => $ ( this ) . css ( "z-index" , this . zIndex ++ ) // Initialize z-index
} ) ;
}
setDraggables ( ) {
//size window
//size window
function getWidth ( ) {
const getWidth = ( ) => {
return Math . max (
return Math . max (
document . body . scrollWidth ,
document . body . scrollWidth ,
document . documentElement . scrollWidth ,
document . documentElement . scrollWidth ,
@ -56,66 +78,57 @@ $(document).ready(function(){
) ;
) ;
}
}
var widthDrag = ( getWidth ( ) ) / 2 ;
//let widthDrag = (getWidth())/2;
function getHeight ( ) {
// function getHeight() {
return Math . max (
// return Math.max(
document . body . scrollHeight ,
// document.body.scrollHeight,
document . documentElement . scrollHeight ,
// document.documentElement.scrollHeight,
document . body . offsetHeight ,
// document.body.offsetHeight,
document . documentElement . offsetHeight ,
// document.documentElement.offsetHeight,
document . documentElement . clientHeight
// document.documentElement.clientHeight
) ;
// );
}
// }
var heightDrag = ( getHeight ( ) ) / 2 ;
// let heightDrag = (getHeight())/2;
// random
const getRndInteger = ( min , max ) => Math . floor ( Math . random ( ) * ( max - min + 1 ) ) + min ;
function getRndInteger ( min , max ) {
return Math . floor ( Math . random ( ) * ( max - min + 1 ) ) + min ;
}
// DRAG and Z-INDEX priorities handler
$ ( ".draggable" ) . each ( function ( ) {
var a = 3 ;
let rw = getRndInteger ( ( getWidth ( ) ) / 2 - 500 , ( getWidth ( ) ) / 2 )
$ ( '.draggable' ) . draggable ( { containment : "window" } , { // Setup dragging and containment
//let rh = getRndInteger(heightDrag-200, heightDrag)
start : function ( event , ui ) { $ ( this ) . css ( "z-index" , a ++ ) ; } // Initialize z-index for handelr
$ ( this ) . css ( "width" , rw ) ;
$ ( this ) . css ( "height" , 'auto' ) ;
} ) ;
} ) ;
}
$ ( '#dragZone div' ) . click ( function ( ) { // Setup z-index handler
setZindex ( ) {
$ ( '#dragZone div' ) . click ( ( ) => { // Setup z-index handler
$ ( this ) . addClass ( 'top' ) . removeClass ( 'bottom' ) ;
$ ( this ) . addClass ( 'top' ) . removeClass ( 'bottom' ) ;
$ ( this ) . siblings ( ) . removeClass ( 'top' ) . addClass ( 'bottom' ) ;
$ ( this ) . siblings ( ) . removeClass ( 'top' ) . addClass ( 'bottom' ) ;
$ ( this ) . css ( "z-index" , a ++ ) ;
$ ( this ) . css ( "z-index" , this . zIndex ++ ) ;
} ) ;
// CURSOR MOUSE DOWN
$ ( '.draggable' ) . on ( "mousedown" , function ( ) {
$ ( '.draggable' ) . css ( 'cursor' , 'grabbing' ) ;
} ) . on ( "mouseup mouseleave" , function ( ) {
$ ( '.draggable' ) . css ( 'cursor' , 'grab' ) ;
} ) ;
} ) ;
}
// RESIZE with aspect ratio
handleCursor ( ) {
$ ( ".resizable" ) . resizable ( { aspectRatio : true , maxHeight : 900 , minHeight : 200 } ) ;
$ ( '.draggable' )
$ ( ".resizableOriz" ) . resizable ( { aspectRatio : true , maxHeight : 500 , minHeight : 200 } ) ;
. on ( "mousedown" , ( ) => $ ( '.draggable' ) . css ( 'cursor' , 'grabbing' ) )
. on ( "mouseup mouseleave" , ( ) => $ ( '.draggable' ) . css ( 'cursor' , 'grab' ) ) ;
}
// settings draggables
$ ( ".draggable" ) . each ( function ( ) {
let rw = getRndInteger ( widthDrag - 500 , widthDrag )
let rh = getRndInteger ( heightDrag - 200 , heightDrag )
$ ( this ) . css ( "width" , rw ) ;
$ ( this ) . css ( "height" , rh )
} ) ;
resize ( ) {
$ ( ".resizable" ) . resizable ( { aspectRatio : true , maxHeight : 900 , minHeight : 10 } ) ;
$ ( ".resizableOriz" ) . resizable ( { aspectRatio : true , maxHeight : 500 , minHeight : 10 } ) ;
}
// close window
closeBtn ( ) {
$ ( ".closable" ) . click ( function ( ) {
$ ( ".closable" ) . click ( function ( ) {
$ ( this ) . parent ( ) . fadeOut ( ) ;
$ ( this ) . parent ( ) . fadeOut ( ) ;
} ) ;
} )
. hover (
function ( ) { $ ( this ) . addClass ( "hover" ) ; } ,
function ( ) { $ ( this ) . removeClass ( "hover" ) ; }
) ;
}
}
} ) ;