dialog-simple

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8" />
    <title>dialog master</title>
    <meta name="description" content="dialog" />
    <meta name="keywords" content="jquery,dialog" />
    <link rel="stylesheet" type="text/css" href="css/dialog.css" />
    <style type="text/css">
	* {
            margin: 0;
            padding: 0;
	}
	body {
            background: #FFF;
            font: 12px/162% Arial,Helvetica,sans-serif;
	}
	p {
            margin: 0 0 10px;
	}
	img {
	   border: 0;
	}
	.doc {
	   width: 650px;
	   margin: 100px auto 50px;
	}
    </style>
</head>

<body>
<div class="doc">

</div>

<script src="js/jquery.js"></script>
<script src="js/dialog.js"></script>
<script language="javascript">

$(document).ready(function(){
	dialog.show({
		title: ‘百度‘,
		url: ‘http://www.baidu.com‘,
		width:800,
		height:500
	});
});

</script>
</body>
</html>

  

dialog-simple,布布扣,bubuko.com

时间: 2024-12-24 07:11:22

dialog-simple的相关文章

bootstrap jq-02

<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <link type="text/css" rel="stylesheet" href="bootstrap3/css/bootstrap.css"> &l

树莓派+Python+pyserial 2.7实现串口通信

手上有个CCD Camera(Barcode Reader/Scanner Module),它是通过RS232通信的,用RS232转USB的转接线连接树莓派,即可完成硬件连接.对于串口通信,可以通过pyserial实现. 首先,安装pyserial: 从https://pypi.python.org/pypi/pyserial下载最新版本的安装包,再通过下面的命令完成安装: tar zxvf pyserial-2.7.tar.gz cd pyserial-2.7 python setup.py

深入浅出API——Activity源码分析

/* * Copyright (C) 2006 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://w

jQuery BlockUI Plugin Demo 5(Simple Modal Dialog Example)

Simple Modal Dialog Example This page demonstrates how to display a simple modal dialog. The button below will invoke blockUI with a custom message. Depending upon the user response (yes or no) an ajax call will be made while keeping the UI blocked.

Android Dialogs(3)警示Dialog教程[创建,单选,复选,自定义]等等

Building an Alert Dialog The AlertDialog class allows you to build a variety of dialog designs and is often the only dialog class you'll need. As shown in figure 2, there are three regions of an alert dialog: Figure 2. The layout of a dialog. Title T

Shell图形界面dialog应用详解

相信大部分朋友都使用过Centos Redhat的setup工具,会弹出向导式图形菜单供我们配置Linux系统,如果你想为你的脚本程序增色添彩,dialog工具无疑是个非常好的选择.dialog工具以一种简洁的方式来润色你的脚本程序,是你的脚本程序看起来更加的友好,setup工具如下图所示. Liunx 下的dialog 工具是一个可以和shell脚本配合使用的文本界面下的创建对话框的工具.每个对话框提供的输出有两种形式:   1.  将所有输出到stderr 输出,不显示到屏幕.   2. 

关于一条定制长按Power键弹出Dialog的需求

如题,需要定制长按Power键弹出的Dialog,UI上的大致效果是:全屏,中间下拉按钮“Swipe Down To Power Off”下拉关机,底部左右两侧“Reboot”,“Cancel”按钮,分别是重启,取消操作.并要求弹出Dialog的同时,背景渐变模糊,操作控件有相应动画效果,执行相应操作有同步动画,退出界面背景渐变至透明消失.设计效果酱紫: 具体控件动画要求就不再详述.主要两件事:1.关机流程,更准确的说应该是对长按Power键的处理:2.定制Dialog. 1.长按Power键,

转载)Detecting the File Download Dialog In the Browser

Detecting the File Download Dialog In the Browser Web applications sometimes need to create documents (PDF, Excel, Word, TIFF, etc.) based on some user input. In most cases, these documents are fairly simple and quick to create, allowing us to create

IM通讯协议总结之三SIMPLE协议

2.SIMPLE协议 SIMPLE(SIP Instant Messaging and Presence LeveragingExtensions)是SIP的扩展协议,其资料找到一篇中文的文档及一篇RFC3428文档,中文的文档主要讲是对SIMPLE协议的presence介绍,FC3428主要讲对SIP扩展的即时通讯的介绍. 通过查找资料得知应用此协议的软件:原MSN版本4(现已无法使用),无法抓取SIMPLE协议的数据包:外国软件Bria,可以使用,但只能抓取打电话的SIP协议数据包,其它通讯

如何在QML应用中设计自己的Dialog

对话框Dialog的设计在许多的QML应用是经常用到的.许多新的开发者刚开始接触QML,有时找不到头绪.也许是由于QML的设计太过灵活,所以实现的方法有非常多.这里介绍几种简单的方式. 1)使用Ubuntu SDK提供的标准API 我们可以使用Ubuntu SDK提供的标准Dialog接口.使用的方法非常简单: import QtQuick 2.4 import Ubuntu.Components 1.2 import Ubuntu.Components.Popups 1.0 Item { wi