The animation produced by my jQuery function is shaky, and I've been looking through different SO solutions, such as adding jquery.easing, but no luck. Is the problem the iframes in each div?

Any ideas on how to smooth out the animation? Is my basic toggle function the best way?

JSFiddle: http://jsfiddle.net/gwLcD/8/

The basic markup is below, and is repeated numerous times on the page (with blocks of text in between each "videotoggle" div):

 <div class="videotoggle">

    <p><h2 class="entry-title">View a few minutes of the (title) video </h2></p>

    <div class="videoblock">

    <iframe width="560" height="315" src="http://www.youtube.com/embed/????????"
    frameborder="0" allowfullscreen></iframe>

    </div></div>

And the function:

$(document).ready(function(){
$(".videoblock").hide();  //closes all divs on first page load
$(".entry-title").click(function() {
    $this = $(this);  //this next code only allows one open div at a time
    $content = $this.closest('.videotoggle').find(".videoblock");
    if (!$this.is('.active-title')) {
        $('.active-title').removeClass('active-title');
        $this.addClass('active-title');
        $(".videoblock:visible").slideToggle(400);  //slide toggle
        $content.slideToggle(400);
    }
});
});
link|improve this question

Can you replicate it on jsfiddle? – Jivings Jan 28 at 21:10
1  
Seems to work fine for me in Chrome: jsfiddle.net/gwLcD/3 – Jivings Jan 28 at 21:12
Actually, viewing Jivings' fiddle on win ff 9.x does result in a bit of a choppy animation. – kontur Jan 28 at 21:37
@Jivings: Ah, I should have set up a jsfiddle to begin with. Here's one: jsfiddle.net/gwLcD/8 with more complete code and active youtube links. Still choppy for some reason. Would integrating jquery.easing help? – songdogtech Jan 28 at 22:52
2  
@songdogtech Interesting. I think its to do with the video. Have you thought about hiding the video, just showing a placeholder when the tabs are opened. And then when the animation has finished you show it? – Jivings Jan 29 at 10:56
show 1 more comment
feedback

5 Answers

up vote 1 down vote accepted
+50

Andrew's solution is correct, but I would still put the css like this (if javascript is off): .videoblock{width:560px; height: 315px; overflow:hidden}

and add the simultaneous animation:

$('.videoblock').css('height','0');
$(".entry-title").click(function() {
    $this = $(this);
    $content = $this.closest('.videotoggle').find(".videoblock");
    if (!$this.is('.active-title')) {

        $('.active-title').removeClass('active-title');
        $this.addClass('active-title');
        $(".videoblock:visible").animate({height: "0"}, { duration: 400, queue: false });
        $content.animate({height: "315"}, { duration: 400, queue: false });
    }
});

Here is the link to the final: http://jsfiddle.net/gwLcD/21/

link|improve this answer
Thanks! Works great and allows only one div open at any time, like I need. – songdogtech Feb 4 at 19:44
feedback

check this out - http://jsfiddle.net/vbXVR/.

it uses this jquery

$(document).ready(function(){
    $(".entry-title").click(function() {
        $(".videoblock").animate({height: "315"}, 1500);
    });
});

i tried to get the toggle effect but it failed. here is what that looked like - http://jsfiddle.net/vbXVR/1/.

link|improve this answer
I have personally come across weird behaviour of jquerys "automated" toggle, show, fade, ... animations regarding "unintatiated" elements. I too, can say that often animating a property by hand worked to solve the issue, just as Andrew is suggesting here. – kontur Jan 28 at 21:52
+1 nice, simple solution. – Brent Anderson Jan 28 at 22:51
I added a jsfiddle: jsfiddle.net/gwLcD/8 The slightly complex part is that I have the function set up to only allow one open div at a time. – songdogtech Jan 28 at 22:53
feedback

Let's look at it this way!

I am not sure how many of these iframes you're going to load up on one page here, but one thing seems to be very certain; if you have one too many, you'll have enough of iframes with enough of youtube videos loading up.

Which means, unnecessary loads. The user may not click all of those links. The user may not watch all of those videos.

So:

  1. There's an unnecessary bloat up of the resources, and an unnecessary consumption of the user's bandwidth.

  2. And, moreover this is not scalable. Consider, you need 50 of those links on a page. OK. Take just 10. Even that is quite a lot!

I'm working up a jsfiddle for this one. Will post it here, when done!

link|improve this answer
There u go: jsfiddle.net/GGS4N – Mitesh Ashar Feb 4 at 20:39
feedback

Any specific reason you do not want to use an accordion directly??

The Jquery UI library should take care of this pretty nicely.

Also, incase that does not work as expected, can you try css3 animations?

You can get a gist of css3 animations here:

http://titansturf.in/2012/01/12/using-css3-transitions/

You will have to create two classes, one with div-hide, which has height=0 and one with div-show which has the required height set. And whenever you wanna toggle just change the class using jquery.

IMO , using CSS3 would be a good options incase your targetd audience uses modern browsers.

If not, you can use mordenizr to change the way thing work according to the kind of browser being used.

link|improve this answer
feedback

What browser are you primarily gunning for? If it's any of the webkit browsers or FireFox then you could take advantage of the hardware accelerated CSS3 transitions with a jquery fallback.

http://msdn.microsoft.com/en-us/scriptjunkie/hh304380

I don't think jQuery easing currently uses CSS3 transitions as a first option but correct me if I am wrong.

Take a look at: http://css3.bradshawenterprises.com/all/

It wouldn't be too much effort at all to hack something up using CSS3.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.