浏览代码

Revert my changes the example file

Caleb Porzio 5 年之前
父节点
当前提交
40a71f7b73
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 5 2
      examples/index.html

+ 5 - 2
examples/index.html

@@ -318,8 +318,11 @@
 
                             <div x-show="open">
                                 I shouldn't leave until the transition finishes.
-                                <div x-show.transition="open">
-                                    I'm transitioning
+                                <div x-show="open"
+                                    x-transition:leave-start="opacity-100 scale-100"
+                                    x-transition:leave="ease-in transition-slow"
+                                    x-transition:leave-end="opacity-0 scale-90">
+                                        I'm transitioning
                                 </div>
                             </div>
                         </div>