首页 > 网站 > WEB开发 > 正文

jQuery滑动开关按钮效果

2024-04-27 14:16:47
字体:
来源:转载
供稿:网友

jQuery滑动开关按钮效果

效果图:

HTML结构:

<div class="boxwrap fr"><!--容器 开始-->            <div class="switchBox fl" id="timeList" typeId="time">            <table  cellpadding="0" cellspacing="0">                <tr>                    <td class="switch_box_l"></td>                    <td class="switch_box_c rel">                            <span class="abs switchBtn" >                                <i class="switchBtn-l"></i>                                <i class="switchBtn-r"></i>                                <span class="curTxt">24小时</span>                            </span>                            <a href="javascript:void(0);" class="swichTxt" id="24" >24小时</a>                            <a href="javascript:void(0);" class="swichTxt" id="48">48小时</a>                            <a href="javascript:void(0);" class="swichTxt" id="72">72小时</a>                    </td>                    <td class="switch_box_r"></td>                </tr>            </table>        </div>        <div class="switchBox fl" id="cityList" typeId="city">            <table  cellpadding="0" cellspacing="0">                <tr>                    <td class="switch_box_l"></td>                    <td class="switch_box_c rel">                            <span class="abs switchBtn" >                                <i class="switchBtn-l"></i>                                <i class="switchBtn-r"></i>                                <span class="curTxt">城市</span>                            </span>                            <a href="javascript:void(0);" class="swichTxt" id="city">城市</a>                            <a href="javascript:void(0);" class="swichTxt" id="station">站点</a>                    </td>                    <td class="switch_box_r"></td>                </tr>            </table>        </div>        </div><!--容器 结束-->

初始化函数:

/*@.boxwrap :滑动按钮父容器,同一界别的滑动按钮必须包含在同一个容器中 *@loadData :点击按钮后回调函数 *@#frameMain : 加载内容的iframe Id *@tab.html : 提交参数的页面 */loadSwitchBox('.boxwrap',loadData,'#frameMain','tab.html');

完整demo:

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表