Thanx for attention..

Here a simpled code of my google gadget. Insert it in this editor

http://code.google.com/apis/gadgets/docs/gs.html#Scratchpad

and press preview.

#------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="Why shaking?" author="Alexandr Petrov"
scaling="false" scrolling="false">
</ModulePrefs>
<Content type="html">
<![CDATA[
<style>
.ifxElement {
background-color: #B5EF59;
border-top: 2px solid #6CAF00;
border-bottom: 2px solid #6CAF00;
border-left: 5px dashed #6CAF00;
border-right: 5px dashed #6CAF00;
padding: 10px;
position: absolute;
width: 200px;
height: 200px;
text-align: center;
letter-spacing: 0px;
overflow: hidden;
}

#ifxElement strong {
font-size: 2em;
}
</style>

<html>
<body>
<div id="ifxElement" class="ifxElement">
My home town
<img src="http://interface.eyecon.ro/demos/images/brasov3.jpg";
width="100%" />
<a href="http://www.iubescbrasovul.ro";><strong>Brasov</strong></a>
</div>
</body>
</html>

<script type="text/javascript" src="http://hosting.gmodules.com/ig/
gadgets/file/116595457939413143888/jquery.js"></script>
<script type="text/javascript" src="http://hosting.gmodules.com/ig/
gadgets/file/116595457939413143888/myInterface.js"></script>
<script type="text/javascript">
function callBack() {

$('#ifxElement').SlideOutLeft(1000);

setTimeout('$("#ifxElement").SlideInRight(1000)', 1000);

setTimeout('callBack()', 5000);
}


callBack();

</script>

]]>
</Content>
</Module>

#------------------------------------


You will see blinking or shaking of image. I take correct jquery 112
and interface...

Have anyone ideas...


Alexandr Petrov






On Nov 13, 12:05 am, polyrhythmic <[EMAIL PROTECTED]> wrote:
> Alexander,
>
> You've found the right group of people.  What version of jQuery are
> you using?  1.2 and above are known to not work with those Interface
> functions (see 
> thread:http://groups.google.com/group/jquery-ui/browse_thread/thread/8179ba7...),
> since Interface is now deprecated in favor of jQUERy UI.  Also, do you
> have an example page we can see?
>
> Charles
> doublerebel.com
>
> On Nov 12, 7:56 am, Karlson <[EMAIL PROTECTED]> wrote:
>
> > Hi... I am from Kiev, Ukraine. My name is Alexandr Petrov and I am 26
> > years old.
>
> > Now I write code for google gadget and use jquery + interface... and
> > have a problem...
>
> > I use SlideOutLeft and SlideInRight but have a shakes when
> > SlideOutLeft finish and SlideInRight starts it's movement
>
> > e.g.
> > $('#content_div').SlideOutLeft(1000);
> > setTimeout('_gel("content_div").innerHTML = html', 5000);
> > $('#content_div').SlideInRight(1000);
> > setTimeout("callBack(myFeed)", 5000);
>
> > I try to fix this problem by pauses (setTimeout). But this don't help.
>
> > Then I see that all work on demo 
> > pagehttp://interface.eyecon.ro/demos/ifx.html#slide-fx
> > by clicking and emulate event by methode - this not help too... (
>
> > Is this group of people who can help find me solution. May be absolute
> > position is my target...
>
> > Alexandr Petrov

Reply via email to