Unslider无法在网站上工作

Unslider not working on website

本文关键字:工作 网站 Unslider      更新时间:2023-09-26

这个http://unslider.com/由于某种原因,它没有出现在我的网站上,只有li文本显示并且正在滑动,但没有出现滑块,只有文本。

我已经包含了js文件以及css和标记,但不知何故,它没有向我显示完整的滑块。

这是我的代码:

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Webpage</title>
    <link rel = "stylesheet" type = "text/css" href = "1style.css"/>
    <script src="//code.jquery.com/jquery-latest.min.js"></script>
    <script src="//unslider.com/unslider.min.js"></script>
    <script>
        $(function() {
            $('.banner').unslider();
        });
    </script>
</head>
<body>
    <br/>
    <h1 style="font-family:verdana; font-size:50px; font-weigth:bold; font-style:italic;" align="center" > Logo </h1>
    <div class="banner">
        <ul>
            <li>This is a slide.</li>
            <li>This is another slide.</li>
            <li>This is a final slide.</li>
        </ul>
    </div>

    <div id = "footer">
        <div class = "container">
            <ul>
                <li><a href = "?">Terms of use</a></li>
                <li><a href = "?">Privacy</a></li>
                <li><a href = "?">Cookies</a></li>
                <li><a href = "?">Accessibility</a></li>
            </ul>
        </div>
    </div>
</body>
</html>

CSS:

.banner { position: relative; overflow: auto; }
.banner li { list-style: none; }
.banner ul li { float: left; }

有人能检查一下我上面提供的链接,告诉我哪里出了问题吗?

感谢


似乎没有一个答案能解决问题,我想我必须找到一个新的滑块。

感谢的帮助

Unslider从列表(<ul>)中的第一个列表项(<li>)中选择高度。因此,要使其完美工作,只需将高度添加到第一个元素即可。

Hey问题出在容器的高度上。

由于高度较低,它无法显示溢出。

所以我对你的代码做了一些改动。

它们是:

<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Webpage</title>
<style type = "text/css">
.banner { position: relative; overflow: auto; 
  background: #0f0; 
  min-height: 100px; }
.banner li { list-style: none; }
.banner ul li { float: left; }
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://unslider.com/unslider.min.js"></script>
<script>
$(document).ready(function(){
$(function() {
$('.banner').unslider();
});
});
</script>
</head>

<body>
<br/>
<h1 style="font-family:verdana; font-size:50px; font-weigth:bold; font-style:italic;" align="center" >Logo</h1>
<div class="banner">
<ul>
<li>This is a slide.</li>
<li>This is another slide.</li>
<li>This is a final slide.</li>
</ul>
</div>

<div id = "footer">
    <div class = "container">
        <ul>
            <li><a href = "?">Terms of use</a></li>
            <li><a href = "?">Privacy</a></li>
            <li><a href = "?">Cookies</a></li>
            <li><a href = "?">Accessibility</a></li>
        </ul>
    </div>
</div>

</body>
</html> 

它对我有用!

查看我的unslider.com帮助文件:

        <!-- The HTML -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
    <head>
    <title>Unslider.com example</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script> 
    <script src="http://unslider.com/unslider.min.js"type="text/javascript"></script>
        <!-- JavaScript -->
    <script type="text/javascript">
        $(function() {
            $('.banner').unslider({
                speed: 500,               //  The speed to animate each slide (in milliseconds)
                delay: 3000,              //  The delay between slide animations (in milliseconds)
                complete: function() {},  //  A function that gets called after every slide animation
                keys: true,               //  Enable keyboard (left, right) arrow shortcuts
                dots: true,               //  Display dot navigation
                fluid: false              //  Support responsive design. May break non-responsive designs
            });
            var unslider = $('.banner').unslider();
            $('.prev').click(function() {
                unslider.data('unslider').prev();
            });
            $('.next').click(function() {
                unslider.data('unslider').next();
            });
            return false;
        });
    </script>
    <!-- CSS -->
    <style type="text/css">
        * { 
            margin: 0;
            padding: 0;
            -webkit-box-sizing: border-box; 
        }
        .banner {
            position: relative;
            width: 100%;
            overflow: auto;
            top: 50px;
            /*z-index: -1;*/
            font-size: 18px;
            line-height: 24px;
            text-align: center;
            color: #FFFFFF;
            text-shadow: 0 0 1px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.3);
            background: #FFFFFF;
            box-shadow: 0 1px 2px rgba(0,0,0,.25);
        }
        .banner ul {
            list-style: none;
            width: 300%;
        }
        .banner ul li {
            display: block;
            float: left;
            min-height: 500px;
            -o-background-size: 100% 100%;
            -ms-background-size: 100% 100%;
            -moz-background-size: 100% 100%;
            -webkit-background-size: 100% 100%;
            background-size: 100% 100%;
            box-shadow: inset 0 -3px 6px rgba(0,0,0,.1);
        }
        .banner .inner {
            padding: 360px 0 110px;
            float: left;
            vertical-align:-100px;
        }
        .banner h1, .banner h2 {
            font-size: 40px;
            line-height: 52px;
            color: #fff;
        }
        .banner .btn {
            display: inline-block;
            margin: 25px 0 0;
            padding: 9px 22px 7px;
            clear: both;
            color: #fff;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            text-decoration: none;
            border : rgba(255, 255, 255, 0.4) solid 2px;
            border-radius: 5px;
        }
        .banner .btn:hover {
            background : rgba(255, 255, 255, 0.05);
        }
        .banner .btn:active {
            -webkit-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
            -moz-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
            -ms-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
            -o-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
            filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
        }
        .banner .btn, .banner .dot {
            -webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
            -moz-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
            -ms-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
            -o-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
            filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
        }
        .banner .dots {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 20px;
            width: 100%;
        }
        .banner .dots li {
            display: inline-block;
            width: 10px;
            height: 10px;
            line-height: 10px;
            margin: 0 4px;
            text-indent: -999em;
            border: 2px solid #fff;
            border-radius: 6px;
            cursor: pointer;
            opacity: .4;
            -webkit-transition: background .5s, opacity .5s;
            -moz-transition: background .5s, opacity .5s;
            transition: background .5s, opacity .5s;
        }
        .banner .dots li.active {
            background: #fff;
            opacity: 1;
        }  
        .unslider-arrow {
            font-family: Expressway;
            font-size: 50px;
            text-decoration: none;
            color: #3d3d3d;
            background: rgba(255,255,255,0.7);
            padding: 0 20px 5px 20px;
        }
        .next {
            position: absolute;
            top: 65%;
            right: 0  
        }
        .prev {
            position: absolute;
            top: 65%;
            right: 90 /* change to left:0; if u wanna have arrow on left side */ 
        }
    </style>
    </head>
    <!-- Body of HTML document -->
    <body>
        <div class="slider">
        <div class="banner">
          <ul>
          <li style="background-image: url('http://lorempixel.com/1200/600/');">
            <div class="inner">
              <h1>Some h1 text</h1>
              <p>smaller p text</p>
                <a class="btn" href="http://www.yourlink.com">Hyperlink</a>
            </div>
          </li>
          <li style="background-image: url('http://lorempixel.com/1200/600/');">
            <div class="inner">
              <h1>Some h1 text</h1>
              <p>smaller p text</p>
              <a class="btn" href="http://www.yourlink.com">Hyperlink</a>
              </div>
              </li>
           <li style="background-image: url('http://lorempixel.com/1200/600/');">
             <div class="inner">
              <h1>Some h1 text</h1>
              <p>smaller p text</p>
              <a class="btn" href="http://www.yourlink.com">Hyperlink</a>
              </div>
          </li>
          <li style="background-image: url('http://lorempixel.com/1200/600/');">
          <div class="inner">
              <h1>Some h1 text</h1>
              <p>smaller p text</p>
              <a class="btn" href="http://www.yourlink.com">Hyperlink</a>
            </div>
          </li>
      </ul>

        </div>
          <a href="#" class="unslider-arrow prev">&larr;</a>
          <a href="#" class="unslider-arrow next">&rarr;</a>
        </div>
   </body>  
</html> 

您的代码很好。滑块已创建,但滑块位于框外,溢出被隐藏,因此您看不到它们。添加此css

.banner ul { margin: 0; padding: 0; }

您需要在javascript代码中指定dots:true,例如,应用它,您会发现它工作得很好。

这是为您工作的jsfiddle链接。

链接JSFIDDLE

$(function() {
    $('.banner').unslider({
        speed: 500,               //  The speed to animate each slide (in milliseconds)
        delay: 3000,              //  The delay between slide animations (in milliseconds)
        complete: function() {},  //  A function that gets called after every slide animation
        keys: true,               //  Enable keyboard (left, right) arrow shortcuts
        dots: true,               //  Display dot navigation
        fluid: false              //  Support responsive design. May break non-responsive designs
    });
});