gpt4 book ai didi

javascript - 如何使用 gem 'intros-rails' 在 Rails 中创建导游

转载 作者:行者123 更新时间:2023-12-02 23:53:27 24 4
gpt4 key购买 nike

我已经为此工作了几天,我正在尝试使用 gem“introjs-rails”在 Rails 中创建导游。 https://github.com/heelhook/intro.js-rails 。下面的内容与指南要求的内容之间存在一些差异,指南希望将“//= require introjs”放入 application.js 中,但我收到“introJs().start();”的 Javascript 错误。是 undefined variable ”,所以我将“//= require introjs”放在“Intro.js”文件中,这似乎解决了这个问题。但是当我启动页面时,我仍然没有看到弹出消息。

Application.html.erb

<head>
<title>Workspace</title>
<%= stylesheet_link_tag 'introjs', 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'intro', 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
</head>

应用程序.scss

/*
*= require introjs
*= require_tree .
*= require_self
*/

索引.html.erb

<h1 data-step="1" data-intro="This is a tooltip!">This is a Tool Tip!</h1>

Intro.js

//= require introjs
introJs().start();

Introjs.css

 *= require introjs

最佳答案

尝试以下操作:

索引.html.erb:

<a class='introduction-farm' href='#' data-intro='Hello step one!'></a>

介绍.js:

introJs(".introduction-farm").start();

As you suggested in the comment, loading the script too earlier was the source of the issue for you : setTimeout(function() { introJs().start(); }, 3000);

对于您的 CSS 问题,很可能没有引用 jQuery,在这种情况下,您需要在 IntroJSbootstrap 之前包含它:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>

关于javascript - 如何使用 gem 'intros-rails' 在 Rails 中创建导游,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55540682/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com