【发布时间】:2014-11-12 09:15:38
【问题描述】:
您好,我为我的项目尝试chardin js website。但有些方法不起作用。我正在使用 rails 3.2.14 和 ruby 1.9.3,chardin js 版本是 0.1.3,所以请帮助我。在这里我附上小提琴链接。
编辑: 在我的项目上尝试了同样的事情(在视图中)。但是当我点击查看它时,动作图像没有出现。
Homes.coffee
$('body').chardinJs()
$('a[data-toggle="chardinjs"]').on 'click', (e) ->
e.preventDefault()
if $('.jumbotron img').is(':visible')
($('body').data('chardinJs')).toggle()
else
$('.jumbotron img').animate height: 250, 600, ->
($('body').data('chardinJs')).toggle()
$('body').on 'chardinJs:stop', ->
$('a.btn.primary').off('click').text('See more on Github')
.attr('href', 'https://github.com/heelhook/chardin.js')
$('a#opentour').css display: 'block'
css 和 fiddle 一样
homes/show.html.erb
<body>
<div class="container">
<div class="jumbotron">
<h1 data-intro="Project title" data-position="right">Chardin.js</h1>
<p class="lead">
Simple overlay instructions for your apps.
</p>
<img src="http://s11.postimg.org/5j9wr7n8z/chardin.png" data-intro="An awesome 18th- century painter, who found beauty in everyday, common things." data-position="right" />
<a id="asdfg" href="#" class="btn btn-large primary" data-toggle="chardinjs" data-intro="This button toggles the overlay, you can click it, even when the overlay is visible" data-position="left">See it in action</a>
<a href="" id="opentour" class="hide" data-toggle="chardinjs">Or open it again</a>
<div class="credits">
<p data-intro="Author of this plugin, aka Pablo Fernandez" data-position="right">
Baked with
<b><3</b>
by
<a href="https://github.com/heelhook">@heelhook</a>.
</p>
</div>
</div>
<div class="links">
<p id="links" data-intro="Links to Github, Twitter, etc." data-position="top">
</p>
</div>
</div>
</body>
应用程序.js
//= require jquery
//= require jquery_ujs
//= require chardinjs.min
//= require_tree .
【问题讨论】:
-
你的小提琴错过了 chardin.js,让事情变得困难
-
我修复了 that.add chardinjs.js 作为外部资源
标签: css ruby-on-rails ruby-on-rails-3 coffeescript