jQuery下载按钮滑动显示文件大小

当前位置:主页 > jQuery库 > 按钮和图标 > jQuery下载按钮滑动显示文件大小
jQuery下载按钮滑动显示文件大小
分享:

    插件介绍

    这是一款很实用的jQuery下载按钮插件。该jQuery下载按钮当用户点击按钮时,会从按钮下发滑出一个面板显示下载文件的大小和类型。

    浏览器兼容性

    浏览器兼容性
    时间:11-18
    阅读:

简要教程

这是一款很实用的jQuery下载按钮插件。

HTML

<div class="buttonWrap">
    <div class="toggleButton">Download Now!</div>
     <a href="#" class="toggleSection">
            <span>Exe</span>
            7.27 MB
    </a>
</div>
                

CSS

插件中按钮的渐变是使用Colorzilla制作的,使用Colorzilla制作的渐变代码将能够兼容所有的浏览器。

.buttonWrap{width:170px; height:80px; display:block;}
    
.toggleButton{
    display:block;
    width:170px;
    height:30px;
    padding:10px 0 0 0;
    text-size:24px;
    font-family:arial, sans-serif;
    font-weight:bold;
    text-align:center;
    color:#FFF;
    text-decoration:none;
    border-radius:7px;
    cursor:pointer;
    border:1px solid #05ABE0;
    text-shadow:-1px -1px 0px #05ABE0;
    background: #87E0FD;
    background: -moz-linear-gradient(top, #87E0FD 0%, #53CBF1 40%, #05ABE0 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#87E0FD), color-stop(40%,#53CBF1), color-stop(100%,#05ABE0));
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87E0FD', endColorstr='#05ABE0',GradientType=0 );
}
.toggleButton:active{       
    background: #87e0fd;
    background: -moz-linear-gradient(top, #05ABE0 0%, #53CBF1 40%, #87E0FD 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05ABE0), color-stop(40%,#53CBF1), color-stop(100%,#87E0FD));
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05ABE0', endColorstr='#87E0FD',GradientType=0 );
}
        
a.toggleSection{
    display:none;
    color:#333;
    background:#EEE url(icon-dl.png) no-repeat 5px center;
    border-left:1px solid #DDD; border-right:1px solid #DDD; border-bottom:1px solid #DDD;
    border-radius:0  0 5px 5px;
    width:60px;
    float:right; 
    padding:5px 5px 5px 40px;
    margin:0 10px 0 0;
    font-family:arial, sans-serif; 
    font-size:12px;
    text-decoration:none;
}
a.toggleSection span{font-weight:bold; display:block;}
                

调用插件

首先要引入jQuery

<script type="text/javascript" src="http://libs.useso.com/js/jquery/1.4.2/jquery.min.js"></script>
                

调用代码

$(document).ready(function() {
    $('.buttonWrap').click(function() {
        if ($('.toggleSection').is(":hidden")) {
            $('.toggleSection').slideDown("slow");
        } else {
            $('.toggleSection').slideUp("slow");
        }
        return false;
    });
});
                

更多信息请参看:http://andrewchamp.com/articles/sliding-download-button-using-jquery