您的位置:

js导航漂浮代码(html漂浮代码)

js导航漂浮代码(html漂浮代码)

更新:

本文目录一览:

求段网页右下角漂浮的JS代码,放广告用的!

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ""

html xmlns=""

head

title不会被屏蔽的网页右下角漂浮窗口代码/title

FCK:meta http-equiv="content-type" content="text/html;charset=gb2312" /

style type="text/css"

#msg_win{border:1px solid #A67901;background:#EAEAEA;width:300px;position:absolute;right:0;font-size:12px;font-family:Arial;margin:0px;display:none;overflow:hidden;z-index:99;}

#msg_win .icos{position:absolute;top:2px;*top:0px;right:2px;z-index:9;}

.icos a{float:left;color:#833B02;margin:1px;text-align:center;font-weight:bold;width:14px;height:22px;line-height:22px;padding:1px;text-decoration:none;font-family:webdings;}

.icos a:hover{color:#fff;}

#msg_title{background:#FECD00;border-bottom:1px solid #A67901;border-top:1px solid #FFF;border-left:1px solid #FFF;color:#000;height:25px;line-height:25px;text-indent:5px;}

#msg_content{margin:0px;width:300px;height:300px;overflow:hidden;}

/style

/head

body

p style="height:1000px;"/p

div id="msg_win" style="display:block;top:490px;visibility:visible;opacity:1;"

div class="icos"a id="msg_min" title="最小化" href="javascript:void 0" _fcksavedurl="javascript:void 0"_/aa id="msg_close" title="关闭" href="javascript:void 0" _fcksavedurl="javascript:void 0"×/a/div

div id="msg_title"标题/div

div id="msg_content"

img src="" width="300" height="300" border="0"/

/div

/div

script language="javascript"

var Message={

set: function() {//最小化与恢复状态切换

var set=this.minbtn.status == 1?[0,1,'block',this.char[0],'最小化']:[1,0,'none',this.char[1],'恢复'];

this.minbtn.status=set[0];

this.win.style.borderBottomWidth=set[1];

this.content.style.display =set[2];

this.minbtn.innerHTML =set[3]

this.minbtn.title = set[4];

this.win.style.top = this.getY().top;

},

close: function() {//关闭

this.win.style.display = 'none';

window.onscroll = null;

},

setOpacity: function(x) {//设置透明度

var v = x = 100 ? '': 'Alpha(opacity=' + x + ')';

this.win.style.visibility = x=0?'hidden':'visible';//IE有绝对或相对定位内容不随父透明度变化的bug

this.win.style.filter = v;

this.win.style.opacity = x / 100;

},

show: function() {//渐显

clearInterval(this.timer2);

var me = this,fx = this.fx(0, 100, 0.1),t = 0;

this.timer2 = setInterval(function() {

t = fx();

me.setOpacity(t[0]);

if (t[1] == 0) {clearInterval(me.timer2) }

},10);

},

fx: function(a, b, c) {//缓冲计算

var cMath = Math[(a - b) 0 ? "floor": "ceil"],c = c || 0.1;

return function() {return [a += cMath((b - a) * c), a - b]}

},

getY: function() {//计算移动坐标

var d = document,b = document.body, e = document.documentElement;

var s = Math.max(b.scrollTop, e.scrollTop);

var h = /BackCompat/i.test(document.compatMode)?b.clientHeight:e.clientHeight;

var h2 = this.win.offsetHeight;

return {foot: s + h + h2 + 2+'px',top: s + h - h2 - 2+'px'}

},

moveTo: function(y) {//移动动画

clearInterval(this.timer);

var me = this,a = parseInt(this.win.style.top)||0;

var fx = this.fx(a, parseInt(y));

var t = 0 ;

this.timer = setInterval(function() {

t = fx();

me.win.style.top = t[0]+'px';

if (t[1] == 0) {

clearInterval(me.timer);

me.bind();

}

},10);

},

bind:function (){//绑定窗口滚动条与大小变化事件

var me=this,st,rt;

window.onscroll = function() {

clearTimeout(st);

clearTimeout(me.timer2);

me.setOpacity(0);

st = setTimeout(function() {

me.win.style.top = me.getY().top;

me.show();

},600);

};

window.onresize = function (){

clearTimeout(rt);

rt = setTimeout(function() {me.win.style.top = me.getY().top},100);

}

},

init: function() {//创建HTML

function $(id) {return document.getElementById(id)};

this.win=$('msg_win');

var set={minbtn: 'msg_min',closebtn: 'msg_close',title: 'msg_title',content: 'msg_content'};

for (var Id in set) {this[Id] = $(set[Id])};

var me = this;

this.minbtn.onclick = function() {me.set();this.blur()};

this.closebtn.onclick = function() {me.close()};

this.char=navigator.userAgent.toLowerCase().indexOf('firefox')+1?['_','::','×']:['0','2','r'];//FF不支持webdings字体

this.minbtn.innerHTML=this.char[0];

this.closebtn.innerHTML=this.char[2];

setTimeout(function() {//初始化最先位置

me.win.style.display = 'block';

me.win.style.top = me.getY().foot;

me.moveTo(me.getY().top);

},0);

return this;

}

};

Message.init();

/script

/body

/html

求一段JS广告底部漂浮代码

你先写一个底部漂浮框

然后判断屏幕的尺寸在手机端让他显示

浮动窗口的代码 (html/js)

第一种方法:

Html代码

html

head

title浮动窗口/title

link type="text/css" rel="stylesheet" href="css/overflow.css" /

script type="text/javascript" src="js/jquery.js"/script

script type="text/javascript" src="js/overflow.js"/script

script type="text/javascript"

$(document).ready(function(){

var b = $("#b");

var overFlow = $("#over");

b.click(function(){

overFlow.fadeIn();

$("#mask").css("background","#111");

$("#mask").css("opacity","0.8");

})

$("#close").click(function(){

overFlow.fadeOut();

$("#mask").css("background","#fff");

$("#mask").css("opacity","1");

});

drag($("#over"),$("#title"));

}) ;

/script

/head

body

div id="over"

div id="title"span id="t"这只是一个演示标题/spanspan id="close"[ x ]/span/div

div id="content"

When a container object, such as a div, has mouse capture, events originating on objects within that container are fired by the div, unless the bContainerCapture parameter of the setCapture method is set to false. Passing the value false causes the container to no longer capture all document events. Instead, objects within that container still fire events, and those events also bubble as expected.br/

---This is edited by Alp.

/div

/div

div id="mask" a id="b" href="#"click/a/div

/body

/html

Js代码

function drag(overFlow,title){

title.onmousedown = function(evt){

var doc = document;

var evt = evt || window.event;

var x = evt.offsetX?evt.offsetX:evt.layerX;

var y = evt.offsetY?evt.offsetY:evt.layerY;

if(overFlow.setCapture){

overFlow.setCapture();

}else if(window.captureEvents){

window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);

}

doc.onmousemove = function(evt){

evt = evt || window.event;

var xPosition = evt.pageX || evt.clientX;

var yPosition = evt.pageY || evt.clientY;

var newX = xPosition - x;

var newY = yPosition - y;

overFlow.style.left = newX;

overFlow.style.top = newY;

};

doc.onmouseup = function(){

if(overFlow.releaseCapture){

overFlow.releaseCapture();

}else if(window.captureEvents){

window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);

}

doc.onmousemove=null;

doc.onmouseup=null;

};

};

}

css代码

#over{

position: absolute;

left: 300px;

top: 200px;

border: 1px solid black;

display: none;

background: #cccccc;

cursor: default;

width: 300px;

z-index: 10;

opacity: 1;

}

#title{

border: 1px solid #1840C4;

background: #95B4DC;

padding: 2px;

font-size:12px;

cursor: default;

}

#close{

cursor: pointer;

margin-right: 1px;

overflow: hidden;

}

#content{

border: 1px solid #C2D560;

background: #EFF4D7;

}

#t{

margin-right:145px;

}

#mask{

z-index: 1;

background: #fff;

width: 1024px;

height: 800px;

}

#b{

position: absolute;

left: 200px;

top: 100px;

}

body{

padding: 0px;

margin: 0px;

}

#over{

background: transparent;

}

第二种方法:

消息框遮罩层:iframe id="show_upload_iframe" frameborder=0 scrolling="no" style="display:none; position:absolute;"/iframediv id="show_upload"nothing.../div'

页面加载loading中:div id="body_loading" onClick="loaded();"img src="__PUBLIC__/images/body_load.gif"/div

关闭浮动窗口:a href="javascript:hideupload()"关闭窗口建议用小图片/a

打开浮动窗口:a href="javascript:showupload('admin.php')"打开浮动/a

// 消息框loading

function loading(){

var o = $('#body_loading');

o.css("left",(($(document).width())/2-(parseInt(o.width())/2))+"px");

o.css("top",(($(document).height()+$(document).scrollTop())/2-(parseInt(o.height())/2))+"px");

o.fadeIn("fast");

}

// 消息框消失

function loaded(){

var o = $('#body_loading');

o.fadeOut("fast");

}

// 隐藏浮动窗口

function hideupload(){

$('#show_upload').hide();

$('#show_upload_iframe').hide();

}

// 弹出浮动窗口

function showupload(ajaxurl){

loading();

var o=$('#show_upload');

var f=$('#show_upload_iframe');

var top = 200;

$.ajax({

url: ajaxurl,

//cache: false,

success: function(res){

loaded();

o.html(res);

o.css("left",(($(document).width())/2-(parseInt(o.width())/2))+"px");

if($(document).scrollTop()200){

top = ($(document).height()+$(document).scrollTop())/2-(parseInt(o.height())/2);

}

o.css("top",top+"px");

f.css({'width':o.width(),'height':o.height(),'left':o.css('left'),'top':o.css('top')});

f.show();

o.show();

}

});

}

js导航漂浮代码(html漂浮代码)

本文目录一览: 1、求段网页右下角漂浮的JS代码,放广告用的! 2、求一段JS广告底部漂浮代码 3、浮动窗口的代码 (html/js) 求段网页右下角漂浮的JS代码,放广告用的! !DOCTYPE h

2023-12-08
顶漂js代码,js购物车代码

2022-11-23
网页两侧悬浮广告js代码(js底部悬浮广告代码)

本文目录一览: 1、求一个页面上漂浮着两个浮动广告的js代码,就是左右两个类似春联的条形广告,能跟随着页面上下拉动 2、求JS代码,悬浮广告,停在网页右侧的! 3、求一个页面上漂浮着两个浮动广告的js

2023-12-08
下雪的js代码(js雪花飘落代码)

本文目录一览: 1、天猫的页面怎么注入js代码的网页下雪特效 2、求帮忙写个js脚本替换网页内容 3、QQ空间免费漂浮物代码怎么用 4、javascript:window.top.space_addI

2023-12-08
htmljs编程笔记(html代码笔记)

本文目录一览: 1、html代码和JS代码有什么区别 2、如何在html中调用js函数 3、JavaScript学习笔记之数组基本操作示例 4、HTML5初学者笔记 5、《web前端笔记7》js字符—

2023-12-08
上下伸缩的js广告代码,上下伸缩的js广告代码是多少

本文目录一览: 1、急求一个ASP程序网站首页左右两边可以上下浮动广告代码?代码最好可以短一点。 2、网页右边跟随滚动条上下移动的小广告是怎么做的?请高手给我代码 3、js 代码,随页面滚动而滚动的浮

2023-12-08
悬浮窗代码js,windows悬浮窗

本文目录一览: 1、网站悬浮窗代码js控制修改 2、求网站jq右侧客服悬浮窗代码 3、一段悬浮窗的JS代码,在火狐浏览器中没有悬浮效果! 4、JavaScript,点击按钮怎么弹出悬浮窗口啊 5、JS

2023-12-08
js左浮动代码,网页设计左浮动代码

本文目录一览: 1、js左浮动代码急 2、浮动窗口的代码 (html/js) 3、求高手指点,网页超过某指定的高度high后,加载运行某JS浮动广告代码,在左侧位置浮动显示的方法? js左浮动代码急

2023-12-08
js实现侧悬浮浮动实例代码(前端 浮动)

本文目录一览: 1、求个左下角JS广告悬浮代码? 2、求一个能用的右侧浮动JS代码 3、JS网页中的浮动窗口代码? 4、浮动窗口的代码 (html/js) 求个左下角JS广告悬浮代码? 漫游于网络之间

2023-12-08
酷炫网页js代码,js炫酷动画

2022-11-24
js脚本浮动窗代码怎么理解,js 浮动

本文目录一览: 1、浮动窗口的代码 (html/js) 2、怎样用javascript实现带关闭窗口的浮动广告 3、在网页中插入浮动窗口,js代码或css代码(易看易懂) 4、javascript如何

2023-12-08
求百度百科右侧底部js导航代码,左侧导航栏代码

本文目录一览: 1、类似百度百科右侧的js效果怎么做 2、百百度百科右侧导航滚动代码 3、求百度百科右侧底部js导航代码?高分悬赏 类似百度百科右侧的js效果怎么做 使用scroll事件监听,计算滚动

2023-12-08
js图片随机飘浮代码(js浮动代码)

本文目录一览: 1、求上下浮动的图片在指定的区域内随浏览器上下滚动的js代码 2、跪求一段图片全屏浮动的JS 代码! 3、求JS代码。按开始,图片随机滚动;按结束,显示随机滚动的其中一张图片。 4、怎

2023-12-08
js浮动客服代码演示地址大全,js浮动客服代码演示地址大全下

本文目录一览: 1、这是一段在线客服JS代码它是右边浮动的如何改让它左浮动? 2、求一个能用的右侧浮动JS代码 3、浮动窗口的代码 (html/js) 4、jQuery实现的网页左侧在线客服效果代码

2023-12-08
js留言簿代码,js留言板

本文目录一览: 1、QQ空间留言代码怎么用~? 2、HTML留言簿代码 如图 3、求一个留言板代码,直接用HTML、JS完成的!可以保存数据 4、请flash高手帮忙 QQ空间留言代码怎么用~? 1.

2023-12-08
回到顶部过渡js代码(回到顶部html代码)

本文目录一览: 1、点击网页底部的top按钮直接回到网页顶部,怎么做?用js怎么表达 2、怎么写“返回顶部”的代码? 3、JS或者jquery怎么设置滚动条回到顶部 4、如何通过HTML标记或JS代码

2023-12-08
漂亮实用的商品对比效果js代码(漂亮实用的商品对比效果js代

本文目录一览: 1、JQuery或JS实现商品加入对比的代码 2、商品信息对比的js代码应该怎么写?类似于这个网站的http://tech.sina.com.cn/notebook/search.ht

2023-12-08
h5网站野马导航js代码,h5网站野马导航js代码大全

本文目录一览: 1、微信H5的页面代码要怎么写 2、怎样在HTML中禁止一段代码,让一段内容不显示。 3、html里,点击左侧菜单,右侧出现文本或者图片,用js怎么写 4、androd H5混合开发

2023-12-08
HTML导航栏详解

2023-05-17
js动态导航代码代码类,动态网页的代码

2022-11-24