GithubHelp home page GithubHelp logo

the-wall's People

Contributors

mebd avatar outrunthewolf avatar plasm avatar realityking avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

the-wall's Issues

Slimbox fails

I would like to use the Slimbox script on the images but it fails. I am redirected to the image but the script doesnt work for the lightbox.

SlideShow true, doesn't show images to the right (upon slide)

Hi,

Great js ... !!

I've got this working correctly with a finite number of images, and draggable.

My issue, is when I try to configure the wall to run as a slideshow, it doesn't load the remaining range to the right...
It slides, but the new area is blank.

My code:
var maxLength = 14; // Max Number images
var counterFluid = 1;
var wallFluid = new Wall("wall", {
"draggable":true,
"inertia":true,
"slideshow":true,
"speed":4500,
"showDuration":10,
"transition":Fx.Transitions.Expo.easeInOut,
"width":150,
"height":150,
"rangex":[-100,100],
"rangey":[-100,100],
"startx":0,
"starty":0,
callOnUpdate: function(items){
items.each(function(e, i){
var a = new Element("img[src=img/"+counterFluid+".png]");
a.inject(e.node).fade("hide").fade("in");
counterFluid++;
// Reset counter
if( counterFluid > maxLength ) counterFluid = 1;
})
}
});

line 481 : $each replaced by Object.each

Hi !
Wonderful job, I love it !

I tried to make it working for mootools 1.3.2 and I came on this issue :

Line 481, in preloadContent(), just replace $each(... by Object.each(...

I didn't tested more deeper for the moment, but Bravo !

Wall elements need to be cleared

Wall elements/images get created but never destroyed. After a slideshow happens for a while, many images are loaded and slow down the slideshow speed. There is a little lag/stutter when the wall moves.

Any way to fix this?

Problem with images showing up on the wall

Hi I cant seem to manage to get the wall to display any photos, i tried creating the wall just on an empty page just to test it.

Any help would be very much appreciated! Thanks in advanced.

HTML:

<!doctype html>

<title>Untitled Document</title> <script src="js/jquery-ui-1.8.18.custom.min.js"></script> <script src="mootools-more-1.3.2.1.js"></script> <script src="wall.js"></script>
<div id="viewport">
    <div id="wall"></div>
</div>
<!-- END Viewport and Wall -->

CSS:

@charset "utf-8";
/* CSS Document */

html {
width:100%;
height:100%;
background:url(logo.png) center center no-repeat;
}

/* Minimal Css Required */
#viewport{
width:900px;
height:450px;
position:relative;
overflow:hidden;
margin:0 auto;
background:#111111 ;
}

#wall{
    z-index:1;
}

// Define The Wall
var maxLength = 100; // Max Number images
var counterFluid = 1;
var wallFluid = new Wall("wall", {
"draggable":true,
"inertia":true,
"width":200,
"height":200,
"rangex":[-100,100],
"rangey":[-100,100],
callOnUpdate: function(items){
items.each(function(e, i){
var a = new Element("img[src=/images/"+counterFluid+".jpg]");
a.inject(e.node).fade("hide").fade("in");
counterFluid++;
// Reset counter
if( counterFluid > maxLength ) counterFluid = 1;
})
}
});
// Init Fluid Wall
wallFluid.initWall();

screen shot 2013-08-12 at 18 35 18

Direction

Hi,

I can't change the direction of the wall's slideshow:
i've got a 12x12 wall, and i would like the wall to move in the up direction.
May you help me?

thanks!

Stephano

getActiveItem unusable

you create an ID from the coordinates, but we cant use this ID because the ID is not added to the image as ID or class and it seems its better to generate the ID from the DOM (child element #1 -> ID #1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.