基础6模态显示不起作用

时间:2016-05-27 11:25:44

标签: modal-dialog zurb-foundation zurb-foundation-6 zurb-reveal

我希望有人能够帮助解决这个问题。我似乎无法获得基金会6工作模式揭示的动画。我基本上是从他们的文档中直接复制并粘贴它,但什么也没有。我看到其他人有问题,但他们的解决方案似乎都没有帮助我。

这是我的完整代码。

<!doctype html>
<html class="no-js" lang="en">
    <head>
        <link rel="stylesheet" href="css/themeat.min.css" />
        <link rel="stylesheet" href="css/styles.css" />
        <link rel="stylesheet" href="css/app.css">
    </head>
<body>

<p><a data-toggle="animatedModal10">Click me for a modal</a></p>

<div class="reveal" id="animatedModal10" data-reveal data-close-on-click="true" data-animation-in="spin-in" data-animation-out="spin-out">
  <h1>Whoa, I'm dizzy!</h1>
  <p class='lead'>There are many options for animating modals, check out the Motion UI library to see them all</p>
  <button class="close-button" data-close aria-label="Close reveal" type="button">
    <span aria-hidden="true">&times;</span>
  </button>
</div>


    <script src="js/vendor/jquery.min.js"></script>
    <script src="js/vendor/what-input.min.js"></script>
    <script src="js/foundation.min.js"></script>    
    <script src="js/app.js"></script>
    <script src="js/view.js?auto"></script>

<script>
   $(document).ready(function() {
      $(document).foundation();
   })
</script>

    </script>

  </body>
</html>

非常感谢任何帮助。 :)

谢谢,

2 个答案:

答案 0 :(得分:2)

我认为你没有包含Motion-UI css文件,你需要它来为模态设置动画。

https://cdnjs.cloudflare.com/ajax/libs/motion-ui/1.1.1/motion-ui.min.css

请参阅工作示例,其中包含从文档中复制的代码。 http://codepen.io/shoaibik/pen/RRwWKg

答案 1 :(得分:0)

在基金会文件http://foundation.zurb.com/sites/docs/reveal.html中, 我看到他们在按钮中使用data-open属性。我希望你应该使用数据打开而不是数据切换。

<p><a data-open = "animatedModal10">Click me for a modal</a></p>