因此,如果您访问 www.leapfm.com 并单击注册或登录,它会将您重定向到新页面。但是,我希望弹出窗口以获得更好的用户体验。
我已经尝试为此使用SimpleModal,但似乎无法使其正常工作。
我已将 simplemodal.js 文件放在我的 assets/javascript 中。
然后随后创建了一个名为 popout.js 的新文件,其中包含我想要弹出的类(注册、登录表单)
$(".form-1").modal();
但这似乎不起作用。我该怎么做才能让它工作?/ 让登录和注册窗口改为弹出窗口。
更多代码:
.form-1 {
position: fixed;
top: 50%;
margin: 0 auto;
width: 300px;
padding: 10px;
position: relative; /* For the submit button positioning */
/* Styles */
box-shadow:
0 0 1px rgba(0, 0, 0, 0.3),
0 3px 7px rgba(0, 0, 0, 0.3),
inset 0 1px rgba(255,255,255,1),
inset 0 -3px 2px rgba(0,0,0,0.25);
border-radius: 5px;
background: linear-gradient(#eeefef, #ffffff 10%);
}
登录:
<div class="form-1">
<h2>Sign in</h2>
<p class="notice"><%= notice %></p>
<%= content_tag(:div, flash[:error], :id => "flash_error") if flash[:error] %>
<%= content_tag(:div, flash[:alert], :id => "flash_alert") if flash[:alert] %>
<br />
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %>
<div><%= f.label :email %><br />
<%= f.email_field :email, :autofocus => true %></div>
<div><%= f.label :password %><br />
<%= f.password_field :password %></div>
<% if devise_mapping.rememberable? -%>
<div><%= f.check_box :remember_me %> <%= f.label :remember_me %></div>
<% end -%>
<div><%= f.submit "Sign in" %></div>
<% end %>
<%= render "devise/shared/links" %>
</div>