Jquery--仿制360右下角弹出窗口

先发浏览器效果图,给大家看。

要实现这样的效果,按照思路,第一步,写好CSS布局,将图片放到浏览器右下角的位置

CSS代码很灵活,我写的只是简单的一种而已,仅供参考:


<style type="text/css">
body{margin:0;
padding:0;
height:100%;
overflow:auto;
}
.bottomshow{
position:fixed;
bottom:-320px;
right:0;
width:522px;/*图片的宽度*/
height:320px;/*图片的高度*/}
</style>

第二步,要考虑写Jquery动画,其实我首先想到的是将.bottomshow这个DIV给出style=“display:none”,然后在Jquery(.bottomshow).show(‘slow‘)但是这种方式无法改变动画出来的方向,于是我放弃了。随后选着了animate()先将bottom默认设置为-320px刚好是图片的高度,所以图片就在浏览器的下部的外面,这时候通过animate({bottom:‘0px’},‘slow’)就做到了从下往上弹出360效果,Jquery代码如下,


<script src="../scripts/jquery-1.3.1.js" type="text/javascript"></script>
<script type="text/javascript">
//等待dom元素加载完毕.
function showbottom(){
$(".bottomshow").animate({bottom:"0px"},‘slow‘);

}
$(document).ready(function(){
setTimeout(‘showbottom()‘,3000);
})
</script>

第三步就要考虑广告是可以关闭的,点击图片右上角的X就可以关闭,这时候就要用到 img  map click了。具体用法请参考代码理解:

img map:


<div class="bottomshow">
<img src="images/360.jpg" border="0" usemap="#planetmap" />
<map name="planetmap" id="planetmap">
<area shape="rect" coords="450,0,520,20" href="javascript:void(0)" onclick="bottomclose()" alt="Sun" />
</map>
</div>

加入href主要是让鼠标放上去变手型,map加上style=“cursor:pointer“是不起作用的。

之后在写close():

function bottomclose(){
$(".bottomshow").animate({bottom:"-320px"},‘slow‘);
}

最后如果图片广告需要跳转链接,只需要Jquery选择到此图片加入onclick链接即可。
代码尚不成熟,欢迎吐槽。

时间: 2024-10-17 14:18:09

Jquery--仿制360右下角弹出窗口的相关文章

jQuery插件---轻量级的弹出窗口wBox

Box Demo wBox——轻量级的弹出窗口jQuery插件,基于jQuery1.4.2开发,主要实现弹出框的效果,并且加入了很多有趣的功能,比如可img灯箱效果,callback函数,显示隐藏层,Ajax页面,iframe嵌入页面…… 背景透明度可以根据实际情况进行调节,甚至不设置背景 可以根据需要添加wBox标题 支持设置窗口位置,默认为在中心显示 支持callback函数 支持html内容自定义 img灯箱看图功能 支持在wBox显示#ID的内容 支持Ajax页面内容 支持设置背景,不设

jquery Jbox 插件实现弹出窗口在修改的数据之后,关闭弹出窗口刷新父页面的问题

http://blog.csdn.net/nsdnresponsibility/article/details/51282797 问题如题: 这里我们在父页面定义一个全局的变量来标识是否需要刷新父页面(声明:下图中点击保存页面之后,不关闭子页面):点击1出弹出窗口: 我们的目的是:如果,用户保存过数据:在点击关闭按钮和2处所指的小X时,刷新父列表页面:若果用户没有保存过数据,关闭窗口是不刷新父列表页面. //这里是父页面(列表页面) var isFreshFlag="1";<%-

c# 右下角弹出窗口

1 public partial class Form2 : Form 2 { 3 System.Diagnostics.Stopwatch sth = new System.Diagnostics.Stopwatch(); 4 5 [DllImport("user32")] 6 private static extern bool AnimateWindow(IntPtr hwnd, int dwTime, int dwFlags); 7 8 //下面是可用的常量,根据不同的动画效果

winfrom右下角弹出窗口

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Runtime.InteropServices;using System.Text;using System.Threading.Tasks;using System.Windows.Forms; namespa

网页右下角弹出窗口提示,用来挂广告或者信息展示都不错

<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>右下角的弹窗</title></head><style type="text/css">body { background:#333333;}#w

C# winform 右下角弹出窗口结果

using System.Runtime.InteropServices; [DllImport("user32")] private static extern bool AnimateWindow(IntPtr hwnd, int dwTime, int dwFlags); //下面是可用的常量,按照不合的动画结果声明本身须要的 private const int AW_HOR_POSITIVE = 0 x0001;//自左向右显示窗口,该标记可以在迁移转变动画和滑动动画中应用.应

C# winform实现右下角弹出窗口结果的方法

using System.Runtime.InteropServices; [DllImport("user32")] private static extern bool AnimateWindow(IntPtr hwnd, int dwTime, int dwFlags); //下面是可用的常量,按照不合的动画结果声明本身须要的 private const int AW_HOR_POSITIVE = 0 x0001;//自左向右显示窗口,该标记可以在迁移转变动画和滑动动画中应用.应

C# 在右下角弹出窗口

窗口代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace FrmSendInfo { public partial class FrmMini : For

JavaScript实现网页右下角弹出窗口代码

<script language="JavaScript"><!--var no = 50;var speed = 1;var ns4up = (document.layers) ? 1 : 0;var ie4up = (document.all) ? 1 : 0;var s, x, y, sn, cs;var a, r, cx, cy;var i, doc_width = 800, doc_height = 600;if (ns4up) {doc_width = s