我有一个触发模式的链接,但是由于iOS 11引导程序模式字段错误,还需要将一个类应用于body
以设置position: fixed
。但是,这并不是将属性设置为正文。
HTML
<body class="" ng-class="{'login-form' : toggle, 'login-form' : !toggle}" window-detection page-class>
<a ng-click="openLoginModal(); toggle = !toggle"
data-rt-id="login--sm">[[ "Login / Join" | translate ]]</a>
CSS
body{
@media screen and (max-width: 414px){
.login-form{
position: fixed!important;
}
}
当用户点击登录按钮时,如何在正文上切换课程?
答案 0 :(得分:0)
您使用的是哪个bootstrap版本。使用3.2版本。 你可以使用这样的东西 .modal-open .navbar-fixed-top, .modal-open .navbar-fixed-bottom { 边距:70像素 }
答案 1 :(得分:0)
更改代码。
Writer
&#13;
var app = angular.module('myApp', []);
app.controller('MyController', function MyController($scope) {
});
&#13;
.login-form{
background-color:blue;
}
&#13;