!
也想出现在这里? 联系我们
广告位

[代码样式]制作搜狐2014巴西世界杯专题幻灯片

[代码样式]制作搜狐2014巴西世界杯专题幻灯片

简介

本文介绍使用 jQuery 幻灯片插件 Owl Carousel 制作搜狐2014巴西世界杯专题幻灯片。

兼容

浏览器兼容:兼容 IE6、IE7 及以上版本和其他主流浏览器。

使用方法

1、引入文件

<link rel="stylesheet" href="https://www.dowebok.com/css/owl.carousel.css" rel="external nofollow" >
<script src="https://www.dowebok.com/js/jquery.min.js"></script>
<script src="https://www.dowebok.com/js/owl.carousel.js"></script>

2、HTML

<div id="owl-demo" class="owl-carousel">
    <a class="item" href="https://www.dowebok.com/" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
        <img src="https://www.dowebok.com/img/1.jpg" alt="">
        <b></b><span>巴西训练内马尔受伤 吓坏队友</span>
    </a>
    <a class="item" href="https://www.dowebok.com/" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
        <img src="https://www.dowebok.com/img/2.jpg" alt="">
        <b></b><span>搜狐直击德国训练 众星拼抢激烈</span>
    </a>
    <a class="item" href="https://www.dowebok.com/" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
        <img src="https://www.dowebok.com/img/3.jpg" alt="">
        <b></b><span>西班牙备战演功夫足球 哈维蝎子摆尾</span>
    </a>
    <a class="item" href="https://www.dowebok.com/" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
        <img src="https://www.dowebok.com/img/4.jpg" alt="">
        <b></b><span>印第安美女追捧德国 特色服饰助威抢镜</span>
    </a>
    <a class="item" href="https://www.dowebok.com/" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
        <img src="https://www.dowebok.com/img/5.jpg" alt="">
        <b></b><span>锐体育:回望1958年世界杯</span>
    </a>
    <a class="item" href="https://www.dowebok.com/" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
        <img src="https://www.dowebok.com/img/6.jpg" alt="">
        <b></b><span>搜狐视频《世界杯特别报道》 发布会众星云集</span>
    </a>
    <a class="item" href="https://www.dowebok.com/" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >
        <img src="https://www.dowebok.com/img/7.jpg" alt="">
        <b></b><span>梅西&C罗谁能笑傲巴西世界杯</span>
    </a>
</div>

为兼容 IE 低版本,添加了一个额外的标签 b,用作黑色半透明背景。如果不需要兼容 IE 低版本,可以使用 rgba。

3、CSS

#owl-demo {
    position: relative;
    width: 640px;
    height: 390px;
    margin-left: auto;
    margin-right: auto;
}
#owl-demo .item {
    position: relative;
    display: block;
}
#owl-demo img {
    display: block;
    width: 640px;
    height: 390px;
}
#owl-demo b {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 78px;
    background-color: #000;
    opacity: .5;
    filter: alpha(opacity=50);
}
#owl-demo span {
    position: absolute;
    left: 0;
    bottom: 37px;
    width: 100%;
    font: 18px/32px "微软雅黑", "黑体";
    color: #fff;
    text-align: center;
}
.owl-pagination {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 22px;
    text-align: center;
}
.owl-page {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-image: url(images/bg15.png);
*display: inline;
*zoom: 1;
}
.owl-pagination .active {
    width: 25px;
    background-image: url(images/bg16.png);
}
.owl-buttons {
    display: none;
}
.owl-buttons div {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 80px;
    margin-top: -40px;
    text-indent: -9999px;
}
.owl-prev {
    left: 0;
    background-image: url(images/bg17.png);
}
.owl-next {
    right: 0;
    background-image: url(images/bg18.png);
}
.owl-prev:hover {
    background-image: url(images/bg19.png);
}
.owl-next:hover {
    background-image: url(images/bg20.png);
}

4、JavaScript

$(function(){
    $('#owl-demo').owlCarousel({
        items: 1,
        navigation: true,
        navigationText: ["上一个","下一个"],
        autoPlay: true,
        stopOnHover: true
    }).hover(function(){
        $('.owl-buttons').show();
    }, function(){
        $('.owl-buttons').hide();
    });
});

额外添加了 hover 事件,让上一个、下一个按钮鼠标移入显示、移出隐藏。


[b2_file link="

百度网盘" name="制作搜狐2014巴西世界杯专题幻灯片" pass="" code=""]

给TA打赏
共{{data.count}}人
人已打赏
脚本代码

[代码样式]jQuery幻灯片插件Flickerplate

2020-10-23 16:05:56

脚本代码

[代码样式]jQuery Tab选项卡插件tabulous.js

2020-10-23 16:05:59

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索