Js代码

2.

传入HTMLElement   
备注:1、元素不是复制而是完整移动到对话框中,所以原有的事件与属性都将会保留 2、如果隐藏元素被传入到对话框,会设置display:block属性显示该元素 3、对话框关闭的时候元素将恢复到原来在页面的位置,style display属性也将恢复   
  
********************************************************************************************   
 
art.dialog({   
    content: document.getElementByIdx_x_x('demoCode_content_DOM'),   
    id: 'EF893L'  
}); 
 效果:把指定的div加载到这个弹框上

JS代码

标题 [title]   
art.dialog({   
    title: 'hello world!'  
});
效果:

Js代码

确定取消按钮 [ok & cancel]   
备注:回调函数this指向扩展接口,如果返回false将阻止对话框关闭   
art.dialog({   
    content: '如果定义了回调函数才会出现相应的按钮',   
    ok: function () {   
        this.title('3秒后自动关闭').time(3);   
        return false;   
    },   
    cancelVal: '关闭',   
    cancel: true //为true等价于function(){}   
}); 

Js代码

创建一个全屏对话框   
art.dialog({   
    width: '100%',   
    height: '100%',   
    left: '0%',   
    top: '0%',   
    fixed: true,   
    resize: false,   
    drag: false  
})
效果图:

Js代码
右下角滑动通知   
artDialog.notice = function (options) {   
    var opt = options || {},   
        api, aConfig, hide, wrap, top,   
        duration = 800;   
           
    var config = {   
        id: 'Notice',   
        left: '100%',   
        top: '100%',   
        fixed: true,   
        drag: false,   
        resize: false,   
        follow: null,   
        lock: false,   
        init: function(here){   
            api = this;   
            aConfig = api.config;   
            wrap = api.DOM.wrap;   
            top = parseInt(wrap[0].style.top);   
            hide = top + wrap[0].offsetHeight;   
               
            wrap.css('top', hide + 'px')   
                .animate({top: top + 'px'}, duration, function () {   
                    opt.init && opt.init.call(api, here);   
                });   
        },   
        close: function(here){   
            wrap.animate({top: hide + 'px'}, duration, function () {   
                opt.close && opt.close.call(this, here);   
                aConfig.close = $.noop;   
                api.close();   
            });   
               
            return false;   
        }   
    };     
       
    for (var i in opt) {   
        if (config[i] === undefined) config[i] = opt[i];   
    };   
       
    return artDialog(config);   
};   
调用示例:   
art.dialog.notice({   
    title: '万象网管',   
    width: 220,// 必须指定一个像素宽度值或者百分比,否则浏览器窗口改变可能导致artDialog收缩   
    content: '尊敬的顾客朋友,您IQ卡余额不足10元,请及时充值',   
    icon: 'face-sad',   
    time: 5  
});  
效果:模仿网吧右下角通知  带动画效果5秒后自动消失

Js代码

跨域访问   
跨域访问无法自适应大小,也无法进行父页面与子页面数据交换   
art.dialog.open('http://www.connect.renren.com/igadget/renren/index.html',   
    {title: '人人网', width: 320, height: 400}); 

Js代码
加载googleMAP   
art.dialog.open('googleMaps.html');  
效果图:

  如何使用?
1.导入<script src="http://blog.163.com/penglie_520/blog/artDialog/artDialog.js?skin=default"></script>
2.加上
Js代码
(function (config) {  
    config['lock'] = true;  
    config['fixed'] = true;  
    config['okVal'] = 'Ok';  
    config['cancelVal'] = 'Cancel';  
    // [more..]  
})(art.dialog.defaults);//这个是用哪个主题有很多主题的你把名字打上就行啦 
 
 
**********************这是googleMap的代码Copy就行啦没有问题有问题给我留言不懂就问只要你问我就说***********************************

Js代码

<!doctype html>  
<html>  
    <head>  
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />  
    <style>  
html { height: 100% }  
body { height: 100%; margin: 0; padding: 0;  
#map_canvas { height: 100% }  
</style>  
    <script src="http://maps.googleapis.com/maps/api/js?sensor=false&language=zh_CN"></script>  
    <script>   
        var map, geocoder;  
        function initialize() {  
            var latlng = new google.maps.LatLng(39.904214, 116.407413);  
            var options = {  
                zoom: 11,  
                center: latlng,  
                disableDefaultUI: true,  
                panControl: true,  
                zoomControl: true,  
                mapTypeControl: true,  
                scaleControl: true,  
                streetViewControl: false,  
                overviewMapControl: true,  
                mapTypeId: google.maps.MapTypeId.ROADMAP  
            };  
            map = new google.maps.Map(document.getElementByIdx_x("map_canvas"), options);  
            geocoder = new google.maps.Geocoder();  
            geocoder.geocode({latLng: latlng}, function(results, status) {  
                if (status == google.maps.GeocoderStatus.OK) {  
                    if (results[3]) {  
                        document.getElementByIdx_x("map_address").value = results[3].formatted_address;  
                    }  
                }  
            });  
              
            var dialog = art.dialog.open.api;  
            dialog.title('google mpas')  
            .size(558, 360)  
            .button({name: '截图', callback: function () {  
                var center = map.getCenter().lat() + ',' + map.getCenter().lng(),  
                    zoom = map.getZoom(),  
                    maptype = map.getMapTypeId(),  
                    url = 'http://maps.googleapis.com/maps/api/staticmap';  
                    url += '?center=' + encodeURIComponent(center);  
                    url += '&zoom=' + encodeURIComponent(zoom);  
                    url += '&size=558x360';  
                    url += '&maptype=' + encodeURIComponent(maptype);  
                    url += '&markers=' + encodeURIComponent(center);  
                    url += '&language=zh_CN';  
                    url += '&sensor=false';  
                  
                art.dialog.through({title: false, content: '<img src="http://blog.163.com/penglie_520/blog/' + url + '" />', padding: 0, width: 558, height: 360, lock: true});  
                  
                return false;  
            }, focus: true})  
            .position('50%', 'goldenRatio');  
              
            document.getElementByIdx_x("map-search-sumbit").onclick = function () {  
                var input = document.getElementByIdx_x('map_address');  
                search(input.value);  
            };  
        }  
        function search(address) {  
            if (!map) return;  
            geocoder.geocode({address : address}, function(results, status) {  
                if (status == google.maps.GeocoderStatus.OK) {  
                    map.setZoom(11);  
                    map.setCenter(results[0].geometry.location);  
                    var marker = new google.maps.Marker({  
                        map: map,  
                        position: results[0].geometry.location  
                    });  
                } else {  
                    alert("Invalid address: " + address);  
                }  
            });  
        }  
    </script>  
    </head>  
    <body onLoad="initialize();" style="font: 12px/1.11 'Microsoft Yahei', Tahoma, Arial, Helvetica, STHeiti; _font-family:Tahoma,Arial,Helvetica,STHeiti; -o-font-family: Tahoma, Arial;">  
    <div style="width:100%; height:100%">  
      <table style="width:100%;height:100%;">  
        <tr>  
          <td style="height:38px"><div style="margin:5px;">地址:  <input id="map_address"  value="" style="width:200px; padding:4px;"> <button id="map-search-sumbit">搜 索</button></div></td>  
        </tr>  
        <tr>  
          <td style="height:100%"><div id="map_canvas" style="height:100%; margin:0 5px"></div></td>  
        </tr>  
      </table>  
    </div>  
</body>  
</html>

正在创建模型,此时不可使用上下文“的解决办法

art.dialog 使用说明的更多相关文章

  1. js库之art.dialog

    自适应内容 artDialog的特殊UI框架能够适应内容变化,甚至连外部程序动态插入的内容它仍然能自适应,因此你不必去考虑消息内容尺寸使用它.它的消息容器甚至能够根据宽度让文本居中或居左对齐——这一切 ...

  2. art.dialog 与 ajax 异步请求

    上周写了一些代码,涉及到jquery异步请求,这里归纳总结下,希望对刚接触编程的同学有帮助. 主要习惯使用 art.dialog 框架,非常好用,在异步请求上,它提供了很多简便的方法. 加载使用art ...

  3. art.dialog

    关闭指定弹出窗: art.dialog({ id: 'hetong' }).close(); 关闭所有的iframe弹出窗,art.dia.close();

  4. art.dialog 返回提示

    <form  target="_top"  /> 1 如果加   target="_top" 提示跳出子页面 2 如果不加则在子页面提示

  5. art.dialog.art 中,将子页面窗口中的值传递给父框架中

    artDialog.open.origin.document.getElementById('父元素ID').value=document.getElementById('子页面元素ID').valu ...

  6. dialog统一标准调用方法(内部记录)

    更新base-config.js 对话框统一为三种形式(如后期需要再添加其他方式) //对话框--确定取消 //dialogOkFun:确定函数 dialogCancelFun:取消函数 functi ...

  7. 推荐一款不错的dialog小工具:artDialog

    推荐一款不错的dialog小工具, 地址:http://www.planeart.cn/demo/artDialog/_doc/labs.html 相关介绍例如以下: artDialog是一个基于ja ...

  8. dialog组件的jquery封装实现

    (function($){ $.extend({ Dialog : function(id, options){ var option = $.extend({}, options); option. ...

  9. artDialog使用说明(弹窗API)

    Js代码 2. 传入HTMLElement    备注:1.元素不是复制而是完整移动到对话框中,所以原有的事件与属性都将会保留 2.如果隐藏元素被传入到对话框,会设置display:block属性显示 ...

随机推荐

  1. 成对HMM(Pair HMMs)用于双序列比对--转载

    http://blog.163.com/bioinfor_cnu/blog/static/19446223720118205527863/ 所有文章:http://blog.163.com/bioin ...

  2. python 分数的数学四则运算

    import fractions f1 = fractions.Fraction(, ) f2 = fractions.Fraction(, ) print('{} + {} = {}'.format ...

  3. [原][osg][osgEarth]osg::Matrix 父子节点的变化关系

    //osg::Matrix offsetmatrix 计算出子节点在父节点下的绝对坐标 //osg::Matrix offposition 用来计算当前节点相对父节点的位置 osg::Matrix o ...

  4. Codeforces D - The Child and Zoo

    D - The Child and Zoo 思路: 并查集+贪心 每条边的权值可以用min(a[u],a[v])来表示,然后按边的权值从大到小排序 然后用并查集从大的边开始合并,因为你要合并的这两个联 ...

  5. spring boot: @Entity @Repository一个简单的数据读存储读取

    spring boot: @Entity @Repository一个简单的数据读存储读取 创建了一个实体类. 如何持久化呢?1.使用@Entity进行实体类的持久化操作,当JPA检测到我们的实体类当中 ...

  6. mysql--------大数据量分页sql语句优化

    分页程序原理很简单,这里就不多说了,本篇文章主要说的是在数据表记录量比较大的情况下,如何将分页SQL做到更优化,让MySQL执行的更快的方法. 一般的情况下,我们的分页SQL语句是这样的: ,; 以上 ...

  7. hdu 6396 Swordsman (技巧)

    大意: n个怪, m种能力值, 当自己所有能力值不低于某只怪时可以杀死它, 并获得它的所有能力, 求最大杀几只 将每只怪拆成$m$个, 排下序贪心即可, 复杂度$O(nm)$, 原题极其卡时间, 我的 ...

  8. layui图片显示

    有些东西看文档可以实现,但当真不如自己写的实在.所以还是记录下来吧. 1. 图片赋值 <div id="layer-photos-demo" class="laye ...

  9. (转载)-关于sg函数的理解

    最近学习了nim博弈,但是始终无法理解sg函数为什么sg[S]=mex(sg[S'] | S->S'),看到一篇博文解释的不错,截取了需要的几章节. 四.Sprague-Grundy数的提出 我 ...

  10. UVA-10271 Chopsticks (线性DP)

    题目大意:在n个数中,找出k个三元组(a<=b<=c),求最小的(a-b)*(a-b)之和. 题目分析:将所有数从大到小排序,定义dp(i,j)表示前 i 个数中找出 j 个三元组时的最小 ...