页面上多个元素的 css3 过渡以及如何反转过渡

发布于 2024-12-17 08:30:53 字数 1144 浏览 2 评论 0原文

我正在做一个带有两个面板的 Jquery Mobile 网站,我想要 CSS-pop 而不是使用普通的 show()/hide()

我从这个开始:

Show:

 if ( $popPanel.attr('status') == 'hidden' ) {
      $popPanel.attr('status','visible')    
          .addClass('ui-panel-active pop in')
          .show('fast')
          .removeClass('in')                
          ...

Hide:

 $(this).attr('status', 'hidden')   
   .addClass('reverse out') 
   .hide('fast')
   .removeClass('ui-panel-active reverse out pop')
   ...

这不起作用,因为我相信我在实际转换发生之前删除了转换类。但即使我将其更改为:

 if ( $popPanel.attr('status') == 'hidden' ) {
      $popPanel.attr('status','visible')    
          .addClass('ui-panel-active pop in')
          .show('fast')
          ...
          window.setTimeout( function() {
             console.log("fired"+$popPanel.jqmData('id') );
             $popPanel.removeClass('in');
             }, 350);

我也只能让过渡显示在第一个弹出窗口上。另一个弹出窗口刚刚出现(延迟 350),尽管它在控制台中被正确识别。

问题

  • 我可以在页面上的多个元素上使用 CSS3 过渡吗?任何提示我做错了什么
  • 即使使用 setTimeout,弹出转换也根本不显示。我在这里做错了什么?

I'm doing a Jquery Mobile site with two panels which I want to CSS-pop instead of using plain show()/hide().

I started with this:

Show:

 if ( $popPanel.attr('status') == 'hidden' ) {
      $popPanel.attr('status','visible')    
          .addClass('ui-panel-active pop in')
          .show('fast')
          .removeClass('in')                
          ...

Hide:

 $(this).attr('status', 'hidden')   
   .addClass('reverse out') 
   .hide('fast')
   .removeClass('ui-panel-active reverse out pop')
   ...

which did not work, because I believe I'm removing the transition classes before the actual transition takes place. But even when I change it to:

 if ( $popPanel.attr('status') == 'hidden' ) {
      $popPanel.attr('status','visible')    
          .addClass('ui-panel-active pop in')
          .show('fast')
          ...
          window.setTimeout( function() {
             console.log("fired"+$popPanel.jqmData('id') );
             $popPanel.removeClass('in');
             }, 350);

I can only get the transition to show on the first popup. The other popup just shows up (with 350 delay), although it is correctly identified in the console.

Questions

  • Can I use CSS3 transitions on more than one element on page? Any hints what I'm doing wrong
  • The pop out transition does not show at all, even with setTimeout. What am I doing wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无畏 2024-12-24 08:30:53

我认为你把事情搞得太复杂了。 这是我认为正在尝试做的一个简单示例。本质上,您可以取消所有这些转换类。您实际上只需要一个“on”类(在我的示例中为“active”)。 CSS 会处理剩下的事情。

I think you are making it too complicated. Here is a simple example of what I think are trying to do. Essentially, you can do away with all those transition classes. You really only need an "on" class ("active", in my example). CSS will take care of the rest.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文