Displaying 20 results from an estimated 300 matches similar to: "moveby with callback"
2005 Jun 27
1
stage left and right effects
Here are two effects (with a common base) that perform a stage
left/right effect. The effect is named after the Hanna Barbara
character Snagglepuss. :) It shakes the contents briefly and then
jets off (stage) to the left or right.
I used the Shake effect as a guide to this one. The StageBase accepts
the element and an "amount" to initially shake the element by. So in
2005 Aug 30
0
content slide in out / simple toggle of content
Hi All,
I have been trying to get a toggle tab system working with protoype
effects. The best example of what I want is shauninman.com (the nav/search)
I intend to have a sidebar and an expandable horizontal tab both of
which can be toogled in and out of place.
for example the sidebar (which will contain a tree menu (like windows
explorer))
Mark Up
---
<div
2005 Nov 23
0
Browser inconsistencies when using Effect.MoveBy()
Hi all!
Brief intro: my name is Cam McVey and I'm a web developer in Glasgow, Scotland.
Now to the point of my first message. I'm trying to use
Effect.MoveBy() to horizontally scroll a table 'underneath' a div. The
idea is that the div is a 'viewer' -- a window that the table can be
seen through. The code below works great with Firefox but not in IE 6
where, after calling
2005 Aug 15
6
setting position for draggables?
Hi list,
how can I set the top and left CSS properties for draggable divs? When I modify the properties directly, the DIV jumps to its old position when I start to drag it.
Thanks in advance!
Martin
_________________________________________________________________________
Mit der Gruppen-SMS von WEB.DE FreeMail k?nnen Sie eine SMS an alle
Freunde gleichzeitig schicken:
2005 Sep 13
0
Effect.MoveBy: em''s possible?
hello
can somebody help me hackin the moveby effect so i can use em''s
instead of px?
any feedback very much appriciated.
thanx alot & have a nice time,
daniel :)
2006 May 14
1
Dragable element
Hey all
Im having a problem... Ok, this is the situation...
I have a small product image, on which ive floated a div over it, and
defined it as draggable. Now, this works, and i can drag it around no
problem. great. but then, what i want to do is, based on the location of
that dragable element from the top and the left, to move (using the
Effect.MoveBy method) a larger image - so effective
2005 Sep 16
1
Drag and Drop effects without dragging and dropping?
Hi there,
This is very much a newbie question. I''ve been playing with the wiki.script.aculo.us
libraries drag & drop functionality (sortable list) for a few days and trying to figure
out how the scripts work, without a lot of luck.
I was wondering how the "move" of the option is achieved (the "flying" option effect, if
you will) and whether I can achieve the
2007 Mar 13
3
Prototype question invalid error in IE6
Hi, I''m new to using Prototype and script.aculo.us. I''m trying to use
prototype to adjust an elements top margin based on the height of the
screen. I''m also using script.aculo.us to make the element move
negatively off the left of the window to create a scrolling effect. It
works fine in Firefox, but I keep getting an Invalid argument error in
IE6.
Here my margin code
2006 Mar 27
0
Effect problems
Hi,
I developed my website locally with uniserver and everything was working
well. I uploaded all my stuff to my production server and suddenly,
nothing is the same... It seems that the queues are now broken and that
my effects are running at the same time. What could cause this bug??
or what is wrong in my code?? I call the function on page load.
Also, in IE, there is a kind of flash
2005 Dec 03
0
dragdrop patch that enables dragging from and to divs with overflow:scroll
Hi all, this is a patch for 1.5_rc5
I noticed that I was not able to drag stuff out of scrolling divs. When I tried to drag it out, the draggable would remain in that div and the scrollbars would adapt to the bigger content of the div.
This patch extends draggable with an option :tofront. When it is set to true, the draggable will be moved to the document body while keeping its position on the
2010 Mar 14
1
Improve lattice XYPLOT graphic
Hi,
How I could improve this graphic?
http://www.divshare.com/download/10754700-f81
I would like to write groups labels in each panel and override the
labels from object.
I am try this code:
xyplot(percentagem.mortos~tempo|trat, data=bio.ens, type="a",
? ? ? auto.key=list(points=FALSE, lines=TRUE, columns=3),
? ? ? ylim=c(0,100),scales = list(x = list(at = c(48, 72, 96), labels
? ?
2005 Nov 22
1
reverteffect - how to deal with this?
Hello everyone.
Does anyone know how to deal with this? i try to change the idea of works revereffect:function but for know unsuccesfull. In my project i have to use dragable with revert: true but i don''t want have revereffect. Maybe any idea?
Grzegorz Ślusarek
----------------------------------------------------
HARRY POTTER I CZARA OGNIA - PREMIERA KINOWA 25 LISTOPADA:
Wejdź:
2005 Jun 24
0
Parallel Worlds
You know, it almost seems as though there are now parallel worlds of
animation utility packages.
There is of course this family of effects, written in JavaScript, and
typically used by Rails apps. But then there''s very similar libraries
written in ActionScript, for Flash, that do very very similar things.
And since ActionScript is heavily based on JavaScript, one wonders if
2005 Sep 15
4
Scrolling Tables/Divs?
Is anyone working on a scrolling table or div such as the openrico
livegrid demo? I''m looking to develop (much like smashbox''s scrolling
images) a collection of thumbnails that you can scroll horizontally.
I''ve got a non-prototype.js example but I wanted to check to see if
anyone was closer than I to this.
BTW, I will be finishing up my slider code shortly and
2006 May 26
4
stopping effects, help me again please
Hi * and thanks for you responses
some body help me stop effect, just last effect.
Thanks! to somebody help me with:
Pulsator = Class.create();
Pulsator.prototype = {initialize: function(element)
{
this.stopped = false;
new Effect.Pulsate(element, { afterFinish: this.action.bind(this) });
},action: function(element){if(!this.stopped) new Effect.Pulsate(element,
{ afterFinish:
2005 Oct 21
1
{ afterfinish }
Hi,
1. can someone give me an example usage of { afterfinish: }? I tried several
ways and just can''t get it. I was trying to deploy an effect after another
one had finished and just couldn''t do it.
Effect.dropout (myElement, {afterfinish: function(element) {
Effect.Appear(anotherElement); } } );
a) why doesn''t this work?
b) what''s the element argument for?
2005 Nov 17
1
afterFinish option not working as expected
Hello,
I''m trying to use the afterFinish parameter on the BlindDown effect,
but it''s not working as I expect it to. My function appears to be
called just as the effect is starting, not when the BlindDown is
complete (finished drawing).
Here''s the code that I''m using for the most part...
Effect.BlindDown( mydiv, { afterFinish:Form.enable(myform) } )
Any
2006 May 18
5
more that 5 time beats for effect.pulsate
hi again
How can i extend 5 times for effect.pulsate beats?
I need that continue beat until other event client happened
about my other mail, is there other solution more elegant that this? :
new Effect.Pulsate(leccion[i_leccion],{duration: 5,from: 1});
thanks again
rag
2005 Jul 19
1
Small patch to Effect.Highlight
I sometimes highlight a div that originally has no background colour.
The current Effect.Highlight will leave my div with a white
background, and it was not quite right for my purposes.
My one-line-patch is simply to add the afterFinish option if there is
no current background colour (insert at line 268 of effects.js
rev:1756)
if ( !current ) options.afterFinish = function(effect){
2005 Dec 08
2
bounce effect
Hi,
I was wondering if anyone has seen (or completed) an effect to make
something ''bounce'' like icons do in the OS X dock when you launch
them? Something that looks like there''s a bit of gravitational
behavior to it?
Thanks,
Trevor
Trevor Squires
http://somethinglearned.com