• 老蔡写的代码,借鉴下!


    var $info_b=$('div.info_b'),$xiaoxi = $info_b.find('div.xt-xiaoxi');

    function DSQ(){
    $('#'+footid).hide();

    $xiaoxi.css({'position':'absolute','bottom':'0'})
    .find('.xiaoxi').css({'width':'75%'});
    $info_b.css({'position':'absolute','bottom':'0','borderTop':'1px solid #efefef'})
    .find('.xiaoxi-btn').css({'display':'inline-block'});
    $('.info_t_ul').css({'paddingBottom':'20'});
    };

    function UDSQ(){
    $('#'+footid).show();

    $xiaoxi.css({'bottom': '44','position':'fixed'})
    .find('.xiaoxi').css({'width':'100%'});
    $info_b.css({'bottom': '44','position':'fixed','left':0,'right':0})
    .find('.xiaoxi-btn').css({'display':'none'});
    $('.info_t_ul').css({'paddingBottom':'90'});
    };

    $xiaoxi.find('.xiaoxi').on('click',function(event){
    event.stopPropagation();
    event.preventDefault();
    this.focus();
    });

    $xiaoxi.find('.xiaoxi').focus(
    function(){
    var scrollHeight=document.body.scrollHeight;
    var speed=200;//滑动的速度
    var OdocHeight=$(document).height()
    $('body,html').animate({scrollTop:OdocHeight },speed);
    setTimeout(DSQ,300);
    });

    $(document).on('click touchstart','.info_t',function(){
    UDSQ();
    $xiaoxi.find('.xiaoxi').blur();
    });

    作者:freddyhuang
    出处:https://www.cnblogs.com/freddyhuang
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

  • 相关阅读:
    [转]为Ubuntu Server安装gnome图形桌面环境
    [转]ubuntu 安装五笔输入法
    [转]更改文件所有者
    QT 透明设置
    ubuntu 交叉编译arm linux 内核
    Opencv vs 2005编译
    [转]在skyeye中运行uboot
    object的引用 与 foreach的使用
    音频和视频
    HTML5 Canvas API
  • 原文地址:https://www.cnblogs.com/freddyhuang/p/5859987.html
Copyright © 2020-2023  润新知