问题标签 [nav-pills]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 满足某些 php 条件时动态激活菜单
我想在满足某些 php 条件时触发一个选项卡处于活动状态。
这是我正在使用的引导代码,它是一个 nav-pills 和 Toggable / Dynamic。
默认情况下,主页选项卡处于活动状态。在加载页面之前,我想检查是否$_SESSION['variable1']
设置了全局变量 ie。如果没有设置,那么我应该将 menu2 设置为活动状态。
在代码的顶部,我尝试这样做,但没有奏效
但是,如果我检查元素,并将上面的 JavaScript 代码粘贴到控制台中,它就可以工作了!不过,我似乎无法在我的代码中运行它。主页选项卡保持活动状态。
twitter-bootstrap-3 - 更改文档准备好的活动选项卡
我想更改文档加载时的活动药丸/标签。我知道您可以像下面那样设置活动药丸,但出于其他原因,我想在文档加载后更改它。我尝试了各种 JS,但似乎没有任何效果。这是 HTML 和 JS(我也试过用下面的 data-toggle="tab" 替换 data-toggle="pill" 仍然不起作用)。
JS
或者
javascript - 在 bootstrap nav-pill 中使用 div
我试图让引导导航药丸在移动视图中占用更少的空间,默认情况下它们相互堆叠。这会占用大量空间。我想要实现的是每行获得两粒药丸。到目前为止,除了活动课程之外,我已经完成了所有工作。当我单击一个药丸时,它会变为活动状态,但不会使活动类远离前一个活动药丸。
我正在使用的html是:
我必须>
从与药丸相关的 CSS 中删除,以确保样式有效。因为 li 没有直接在 ul 之后。所以这一切都很好。
我现在唯一能想到的问题是,当活动切换工作时,可能<div class="row">...</div>
会<div class="col-xs-6">...</div>
妨碍 bootstrap.js 文件。
但是..我不是 JavaScript 专家,你可能会说,所以我需要帮助来确定这是否可能。
谢谢
抢
css - 跨浏览器上 nav-pills Bootstrap 的兼容性
我目前正在学习和练习 bootstrap 3 库,其中nav-pills的一部分特别令人困惑,许多其他参考文献更喜欢nav-tabs而不是nav-pills为什么会这样,我们可以将nav-pills用于跨浏览器目的吗?任何例子都非常感谢!
jquery - 通过引导导航药丸导航的简单方法
我在这里绘制了一个引导导航药丸样本,
一旦用户使用此处给出的 jquery 单击选项卡内容内的下一个按钮,我就可以转到下一个选项卡。除了使用 angularjs 或任何其他方法的示例之外,还有其他最简单的方法吗?
javascript - data-toggle='tab' or ='pills' not allowing the url to work
Firs of all I wanted to say that I have read a lot about it online and all the solutions found I could not implement them properly, some repaired some problems but created others. Another thing is that I cannot comment on other posts because of low reputation (noob), if I could do that I would not be posting a new question.
I am creating a website with a navbar with different pages for each part of the website: Home.html, AboutUs.html...
I implemented the navbar, but I think is not a good solution to paste the same code of the navbar in each page so I looked for a way to optimizing it.
For now I created another site (Navbar.html) and added it into the other pages and it looks good:
and inside the body:
The problem occurred when trying to automatize the "active" class. For that I tried both data-toggle='tab' and data-toggle='pill' but in both cases the active changed but when clicking the button the webite didn't change. There is the code:
I also tried redirecting it with a .js file:
it worked perfectly and it changed pages when the button was clicked, but I found that if I scrolled down there was the first page I opened constantly there below the changing page. (hard to explain this, hope you understood)
I also tried adding lots of functions found online but I didn't really know if they were working. I think I didn't implemented them correctly or in the wrong place. I'm a noob in html. I don't really know how to call the function :S Example:
Is there anyway I can do it, or another way to automatize the "active" class in each page?
Thank you for your time
php - 使用 php 切换引导药丸
当使用 php 在我的 url 上设置变量时,我可以切换引导药丸吗?例子
javascript - 如何在 AngularJS 中实现嵌套选项卡?
我正在开发一个项目,其中网络应用程序有 6 个选项卡,包括我使用ng-show开发的主屏幕,每个选项卡都有ng-click="setTab(1)"
对于这些选项卡之一,我还有其他四个选项卡。我尝试使用Bootstrap Tabs and Pills,但它没有锻炼。
任何人都可以帮助我在 AngularJS 中实现嵌套选项卡。
html - 具有展开/折叠内容的引导导航药丸
我对引导程序 3 有问题。
文档说:使用“tab-pane fade”类来淡化选项卡之间的过渡。所以我的代码看起来像这样:
并且淡入淡出效果很好。但问题是内容取决于它的大小会产生明显的跳跃效果。
我知道引导程序有一个“折叠”类,手风琴已将其用于手风琴内容的展开/折叠动画。
问题是我想保存选项卡内容之间的淡入淡出过渡,并在我在选项卡之间切换时使选项卡的内容扩展和折叠。
目前的实现在 protasov.by/service 在这个页面上有 4 个导航药丸,它们在切换之间淡入淡出,这些标签里面有表格,我的想法是让标签内容在大小之间折叠/展开动画然后淡入显示拉伸的内容。
如何向该选项卡添加“折叠”显示/隐藏行为?
提前致谢!