jQuery UI blind effect - reveal from bottom

前端 未结 5 1159
既然无缘
既然无缘 2020-12-09 07:03

This could be really obvious and I\'m completely missing it.

I\'ve searched for hours and can\'t seem to find a way to, using jQuery, reveal a hidden div from the bo

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-09 07:30

    How about instead of blind, using slide with a direction option? Here's a jsFiddle example.

    jQuery:

    $( "#effect" ).show( 'slide', { direction: "down" } , 500);
    

提交回复
热议问题