javascript - Callback function to be executed after jQuery showhide? - Stack Overflow

In iOS, the following code has a noticeable flicker between the hide() and the scrollBy():element.hide(

In iOS, the following code has a noticeable flicker between the hide() and the scrollBy():

element.hide();
window.scrollBy(0, -elementHeight);

This is because toggling between display: none and display: block on iOS is a heavy task, as if the elements are being added to and removed from the DOM.

I need a way to perform window.scrollBy() as a callback, once the hide() has successfully pleted and the DOM has updated. Is there a way to do this in jQuery?

In iOS, the following code has a noticeable flicker between the hide() and the scrollBy():

element.hide();
window.scrollBy(0, -elementHeight);

This is because toggling between display: none and display: block on iOS is a heavy task, as if the elements are being added to and removed from the DOM.

I need a way to perform window.scrollBy() as a callback, once the hide() has successfully pleted and the DOM has updated. Is there a way to do this in jQuery?

Share asked Sep 20, 2014 at 21:50 user1031947user1031947 6,68417 gold badges65 silver badges91 bronze badges 2
  • Just read the documenation. element.hide(callback); facepalm – user1031947 Commented Sep 20, 2014 at 21:53
  • 1 stackoverflow./questions/7769475/… – nisargjhaveri Commented Sep 20, 2014 at 21:55
Add a ment  | 

2 Answers 2

Reset to default 9

Either pass a duration and a callback, or just pass a callback option, like this:

element.hide(0, some_function);

// or 

element.hide({done: some_function});

By default, the second option takes 400 ms. To do it immediately, use one of these:

element.hide(0, some_function);

// or 

element.hide({duration: 0, done: some_function});

Here's a jsFiddle demo.

See the jQuery documentation for more details.

From the jQuery api:

.hide(options)

plete Type: Function() A function to call once the animation is plete.

Try this:

element.hide({plete: function(){ window.scrollBy(0, -elementHeight); });

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743687792a4490438.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信