我尝试了很多方法,并在互联网上搜索动画制作工作并留下了空白。我有datepicker工作和日期格式选项但不是动画(我想使用'剪辑'选项)。
以下是各种文件中的内容 -
的application.js
//= require jquery
//= require jquery.turbolinks
//= require jquery-ui/datepicker
//= require jquery_ujs
//= require turbolinks
//= require_tree .
Events.js.coffee
jQuery ->
$("#datepicker").datepicker(
dateFormat: "DD, d MM, yy"
);
_form.html.erb
<%= f.input :image, as: :file, label: 'Image' %>
<%= f.input :title, label: 'Title' %>
<%= f.input :location, label: 'Location' %>
<%= f.text_field :date, id: 'datepicker', label: 'Date' %>
<%= f.input :time, label: 'Time' %>
<%= f.input :description, label: 'Description' %>
<%= f.input :organised_by, label: 'Organised by' %>
<%= f.input :organiser_description, label: 'Organiser description' %>
<%= f.input :url, label: "Link to Organiser site" %>
<%= f.button :submit, label: 'Submit' %>
Application.css.scss
*= require_self
*= require jquery-ui/datepicker
*/
@import 'normalize';
@import 'global.css.scss';
@import 'events.css.scss';
@import 'welcome.css.scss';
我尝试过以下变化 -
$ ->
$("#datepicker").datepicker();
$( "#datepicker" ).datepicker( "option", "showAnim", "clip");
$(document).ready(function(){
$("#datepicker").datepicker(dateFormat: "DD, d MM, yy");
$( "#datepicker" ).datepicker( "option", "showAnim", "clip");
});
在其他许多人中,我错过了什么?这是我正在建设的宏观方案中的一个小问题,但在修复之前不会继续前进。非常感谢所有的帮助。