本文介绍了物化-全屏滑块和导航栏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在项目开发期间,我决定使用全屏图像滑块.如官方网站上所示:链接
During a project's development I've decided to use a full screen image slider. As shown on the official site : Link
通过这种方式,导航栏消失了,但是在YouTube视频上,我看到有一种方法(我不知道)可以同时保持全屏滑块和导航栏.谁能帮助我解决这个问题?有没有办法同时使用这两个功能?谢谢.
In this way the navigation bar is disappeared, but on a Youtube video I've seen that there is a way (which I don't know) in order to maintain both the full-screen slider and the navbar. Can anyone help me in this problem? Is there a way to take both of these features?Thanks.
这是代码:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="./script.js"></script>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script>
<script src="./src/jquery.js"></script>
<script src="./src/js.js"></script>
<title>Home Automation - Test</title>
<meta charset="utf-8" lang="it">
<link rel="stylesheet" href="./css/mycss.css">
</head>
<body class="bkground">
<nav class="teal darken-1">
<div class="nav-wrapper">
<a href="#" class="brand-logo right">Domotic Home</a>
<ul id="nav-mobile" class="left hide-on-med-and-down">
<li class="active"><a href="index.html">General</a></li>
<li><a href="homecontrol1.html">Home Control - First floor</a></li>
<li><a href="homecontrol2.html">Home Control - Second floor</a></li>
<li><a href="privatearea.html">Private Area</a></li>
</ul>
</div>
</nav>
<br>
<br>
<div class="slider fullscreen">
<div class="main-content">
<ul class="slides">
<li>
<img src="./img/1.jpg">
</li>
<li>
<img src="./img/5.jpg">
</li>
<li>
<img src="./img/3.jpg">
</li>
<li>
<img src="./img/6.jpg">
</li>
<li>
<img src="./img/7.jpg">
</li>
<li>
<img src="./img/9.jpg">
</li>
<li>
<img src="./img/11.jpg">
</li>
<li>
<img src="./img/12.jpg">
</li>
<li>
<img src="./img/13.jpg">
</li>
<li>
<img src="./img/14.jpg">
</li>
<li>
<img src="./img/15.jpg">
</li>
<li>
<img src="./img/16.jpg">
</li>
</ul>
</div>
</div>
</body>
</html>
这里是CSS
.modal {
max-height: 90%;
max-width: 90%;
}
.bkground {
background-image: url("/img/Sfondo3.jpg")
}
.sliderimg {
border-color: black;
border: solid 2px;
}
.floorimg {
border-color: black;
border: solid 4px;
}
.main-content {
top: 100%;
position: absolute;
width: 100%;
}
推荐答案
我找到了答案
.slider-adjustment{
position: fixed;
top: 56px; <!-- as nav bar has height of 56px -->
left: 0;
bottom: 0;
right: 0;
overflow: auto;
background-color:cyan ;
}
<div class="slider-adjustment">
<!-- All html for slider goes here -->
</div>
这篇关于物化-全屏滑块和导航栏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!