- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是网络开发的新手,我正在努力弄清楚如何在加载页面时默认隐藏边栏。我有一个 ASP.NET MVC 应用程序,我正在使用这个侧边栏 here .
有侧边栏的页面设置如下:
@using (Html.BeginForm("Index", "Ideas", FormMethod.Post))
{
<div id="my-sidebar-context" class="widget-sidebar-context sidebar-hide">
<div class="page-body">
<nav class="widget-sidebar">
...code for items on the sidebar
</nav>
<div class="page-main">
<div id="page-content-wrapper">
<div class="container-fluid">
<div style="display:inline-block;">
<a href="#" class="navbar-toggler widget-sidebar-toggler">
<i class="fa fa-bars fa-log></i>
</a>
</div>
...code for what is populated on the page
</div>
</div>
</div>
</div>
</div>
}
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
<script>
$(function () {
$("#my-sidebar-context").simpleSidebar();
});
</script>
切换侧边栏的按钮工作正常,但是当页面加载时,它默认打开侧边栏,即使我将类设置为包含“侧边栏隐藏”。
我正在使用的边栏的 javascript 是:
//----------------------------------------
// side bar toggling
//----------------------------------------
var jContext = $('#my-sidebar-context');
var jSidebar = $('.widget-sidebar', jContext); // the sidebar
;(function ( $, window, document, undefined ) {
var pluginName = 'simpleSidebar';
function Plugin ( element, options ) {
this.element = element;
this._name = pluginName;
this._defaults = $.fn.simpleSidebar.defaults;
this.options = $.extend( {}, this._defaults, options );
this.init();
}
$.extend(Plugin.prototype, {
init: function () {
var jContext = $(this.element);
$('.widget-sidebar-toggler', jContext).on('click', function () {
if (jContext.hasClass("sidebar-show")) {
jContext.removeClass('sidebar-show');
jContext.addClass('sidebar-hide');
} else if (jContext.hasClass("sidebar-hide")) {
jContext.removeClass('sidebar-hide');
jContext.addClass('sidebar-show');
} else {
// default behaviour, if small screen, we show the sidebar, if large screen, we hide the sidebar
var isSmallScreen = true;
var marginLeft = parseInt(jSidebar.css('margin-left'));
if (0 === marginLeft) {
isSmallScreen = false;
}
if (true === isSmallScreen) {
jContext.addClass('sidebar-show');
} else {
jContext.addClass('sidebar-hide');
}
}
return false;
});
},
});
$.fn.simpleSidebar = function ( options ) {
this.each(function() {
if ( !$.data( this, "plugin_" + pluginName ) ) {
$.data( this, "plugin_" + pluginName, new Plugin( this, options ) );
}
});
return this;
};
$.fn.simpleSidebar.defaults = {
// property: 'value',
// onComplete: null
};
})( jQuery, window, document );
我正在使用的侧边栏 CSS 是:
/*------------------------------------
- META VARIABLES
------------------------------------*/
/*------------------------------------
- SIDEBAR VARIABLES
------------------------------------*/
.widget-sidebar-context {
position: relative;
/**
make the footer go at the bottom of the screen
*/
display: flex;
flex-direction: column;
min-height: 100vh;
/*------------------------------------
- CLICKED STATES
------------------------------------*/ }
.widget-sidebar-context .page-header {
position: relative;
z-index: 1025; }
.widget-sidebar-context .page-body {
background: #e3e3e3;
flex-grow: 1;
display: flex; }
.widget-sidebar-context .page-body .widget-sidebar {
position: fixed;
width: 240px;
height: calc(100vh - 50px);
/**
Note: we use margin-left instead of transform: translateX because it seems that the latter
extends the width of the divs, which makes scrollbars appear in certain cases,
while on the other hand with margin-left the content remains constrained inside its container div boundaries.
*/
margin-left: -240px;
z-index: 1024;
display: flex;
display: -ms-flexbox;
flex-direction: column;
padding: 0;
color: #fff;
background: #262D33;
transition: margin 0.24s, opacity 0.24s;
overflow-y: auto;
opacity: 0;
/*------------------------------------
- NATURAL RESPONSIVENESS for the sidebar
------------------------------------*/ }
.widget-sidebar-context .page-body .widget-sidebar i {
margin-right: 7px; }
.widget-sidebar-context .page-body .widget-sidebar a[data-toggle="collapse"] {
position: relative; }
.widget-sidebar-context .page-body .widget-sidebar .dropdown-toggle::after {
display: block;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%); }
.widget-sidebar-context .page-body .widget-sidebar [aria-expanded="false"]::after {
transition: transform 0.24s;
transform: rotate(-90deg); }
.widget-sidebar-context .page-body .widget-sidebar [aria-expanded="true"]::after {
transition: transform 0.24s;
transform: rotate(0deg); }
.widget-sidebar-context .page-body .widget-sidebar a[aria-expanded="true"], .widget-sidebar-context .page-body .widget-sidebar a.active {
color: #fff;
background: #315472; }
.widget-sidebar-context .page-body .widget-sidebar ul li a {
padding: 10px;
font-size: 1em;
display: block;
color: #e0e0e0;
text-decoration: none;
border-left: 2px solid transparent; }
.widget-sidebar-context .page-body .widget-sidebar ul li a:hover {
background: #414d58;
border-left: 2px solid #608ab3; }
.widget-sidebar-context .page-body .widget-sidebar ul ul a {
font-size: 0.9em !important;
padding-left: 30px !important; }
.widget-sidebar-context .page-body .widget-sidebar ul ul ul a {
padding-left: 50px !important; }
.widget-sidebar-context .page-body .widget-sidebar .active {
background-color: #072433; }
@media (min-width: 992px) {
.widget-sidebar-context .page-body .widget-sidebar {
margin-left: 0px;
opacity: 1; } }
.widget-sidebar-context .page-main {
margin-left: 0;
flex: 1;
/**
* Very important!!
* Without it, the reponsive tables (.table-responsive) class won't work properly inside cards.
* Spent 1 hour to find it...
*/
min-width: 0; }
@media (min-width: 992px) {
.widget-sidebar-context .page-main, .widget-sidebar-context .page-footer {
margin-left: 240px; } }
.widget-sidebar-context.sidebar-show .widget-sidebar {
margin-left: 0px;
opacity: 1; }
.widget-sidebar-context.sidebar-show .page-main, .widget-sidebar-context.sidebar-show .page-footer {
margin-left: 240px; }
@media (max-width: 576px) {
.widget-sidebar-context.sidebar-show .page-main::before {
position: fixed;
top: 0;
left: 0;
z-index: 1010;
width: 100%;
height: 100%;
content: "";
background: rgba(0, 0, 0, 0.7);
animation: opacity .25s; } }
.widget-sidebar-context.sidebar-hide .widget-sidebar {
margin-left: -240px;
opacity: 0; }
.widget-sidebar-context.sidebar-hide .page-main, .widget-sidebar-context.sidebar-hide .page-footer {
margin-left: 0; }
/*# sourceMappingURL=simplesidebar.css.map */
有什么建议吗?运行它并检查元素时,切换侧边栏时,它会将类设置为“侧边栏隐藏”。因此,当我更改代码以匹配它时,我希望它默认隐藏。然而,事实并非如此。我错过了什么?
最佳答案
忽略我的评论,这是一个 hacky 解决方案。我快速浏览了一下文档
http://dcdeiv.github.io/simple-sidebar/#options
看起来您需要使用以下内容指定将在选项中打开侧边栏的元素:
$("#my-sidebar-context").simpleSidebar({opener: '.widget-sidebar-toggler'})
关于javascript - jQuery 侧边栏 - 默认情况下隐藏它的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58185491/
代码如下: http://jsfiddle.net/t2nite/KCY8g/ 我正在使用 jquery 创建这些隐藏框。 每个框都有一些文本和一个“显示”和“隐藏”按钮。我正在尝试创建一个“显示/隐
我正在尝试做某事。如果单击一个添加 #add-conferance 然后菜单将显示.add-contact。当点击隐藏然后它显示隐藏。我也将 setTimeout 设置为 7sec,但我希望当我的鼠标
我有一个多步骤(多页?)表单,只要用户按下“下一步”或“上一步”按钮,表单字段就会通过 div 显示和隐藏。 我只想禁用第一个 div (div id="page1"class="pageform")
我有一个使用 IIS 6 和 7 的当前系统,用 ASP.NET 和 .NET 4 中的 C# 编写。 My purpose is to hide the url completely (as per
我正在建立一个网站,并有一个幻灯片。幻灯片有标题和索引,覆盖整个页面。当覆盖被激活时,标题需要消失。当覆盖层被停用时,通过单击退出按钮、缩略图链接或菜单链接,字幕必须返回。 这就是我目前所拥有的
我正在尝试为显示/隐藏功能制作简单的 jquery 代码。但我仍然做错了什么。 $(document).ready(function(){ $('.arrow').click(function
我有一个自定义对话框并使用它来代替 optionMenu。所以我希望 myDialog 表现得像菜单,即在按下菜单时显示/隐藏。我尝试了很多变体,但结果相同: 因为我为 myDialog 设置了一个
在我的项目中,我通过 ViewPager 创建我的 tabBar,如下所示: MainActivity.java mViewPager = (ViewPager) findViewById(R.id.
我目前正在使用一个 Excel 表,我将第 1-17 行分组并在单元格 B18 中写入了一个单元格值。我想知道当我在展开/折叠行时单击 +/- 符号时是否有办法更改 B18 中的值。 例如:我希望 B
我想创建一个按钮来使用 VBA 隐藏和取消隐藏特定组。我拥有的代码将隐藏或取消隐藏指定级别中的所有组: Sub Macro1() ActiveSheet.Outline.ShowLevels RowL
我是 VBA 新手。我想隐藏从任何行到工作表末尾的所有行。 我遇到的问题是我不知道如何编程以隐藏最后写入的行。 我使用下一个函数知道最后写入的单元格,但我不知道在哪里放置隐藏函数。 last = Ra
我想根据另一个字段的条件在 UI 上隐藏或更新一个字段。 例如,如果我有一个名为 Color 的字段: [PXUIField(DisplayName="Color")] [PXStringList("
这是我尝试开始收集通常不会遇到的 GCC 特殊功能。这是@jlebedev 在另一个问题中提到g++的“有效C++”选项之后, -Weffc++ This option warns about C++
我开发了一个 Flutter 应用程序,我使用了 ProgressDialog小部件 ( progress_dialog: ^1.2.0 )。首先,我展示了 ProgressDialog小部件和一些代
我需要在 API 17+ 的同一个 Activity(Fragment) 中显示/隐藏状态栏。假设一个按钮将隐藏它,另一个按钮将显示它: 节目: getActivity().getWindow().s
是否可以通过组件的 ts 代码以编程方式控制下拉列表的显示/隐藏(使用 Angular2 清楚)- https://vmware.github.io/clarity/documentation/dro
我想根据 if 函数的结果隐藏/显示 NiceScroll。 在我的html中有三个部分,从左到右逐一滚动。 我的脚本如下: var section2 = $('#section2').offset(
我有这个 jquery 代码: $(document).ready(function(){ //global vars var searchBoxes = $(".box"); var searchB
这个问题已经有答案了: Does something like jQuery.toggle(boolean) exist? (5 个回答) 已关闭 6 年前。 在 jQuery 中(我当前使用的是 1
我在这样的选择标签上使用 jQuery 的 selectMenu。 $('#ddlReport').selectmenu() 在某些情况下我想隐藏它,但我不知道如何隐藏。 这不起作用: $('#ddl
我是一名优秀的程序员,十分优秀!