我正在尝试将这个Simple Marquee 插件用于新闻自动收报机。我已经完成了所有文档。但是,我仍然收到一条错误消息,“未捕获的ReferenceError: createMarquee is not defined ”。为什么我会收到此错误。如何解决这个问题?
$(function (){
createMarquee();
});
.container {
width: 100%;
background: #4FC2E5;
float: left;
display: inline-block;
overflow: hidden;
box-sizing: border-box;
height: 45px;
position: relative;
cursor: pointer;
}
.marquee-sibling {
padding: 0;
background: #3BB0D6;
width: 20%;
height: 45px;
line-height: 42px;
font-size: 12px;
font-weight: normal;
color: #ffffff;
text-align: center;
float: left;
left: 0;
z-index: 2000;
}
.marquee,
*[class^="marquee"] {
display: inline-block;
white-space: nowrap;
position: absolute;
}
.marquee { margin-left: 25%; }
.marquee-content-items {
display: inline-block;
padding: 5px;
margin: 0;
height: 45px;
position: relative;
}
.marquee-content-items li {
display: inline-block;
line-height: 35px;
color: #fff;
}
.marquee-content-items li:after {
content: "|";
margin: 0 1em;
}
<div class="container">
<div class="marquee-sibling"> Breaking News </div>
<div class="marquee">
<ul class="marquee-content-items">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="https://rawgit.com/conradfeyt/Simple-Marquee/master/js/marquee.js"></script>