页面嵌入QQ功能(点QQ建立一个临时会话,显示在页面的固定位置)

摘要:
//www.w3.org/1999/xhtml“>charset=gb2312”/>styletype=“text/css”>。在线服务{position;right;}.在线服务.服务提示{display;cursor;}.线上服务.悬停.服务提示{display;height;

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>测试</title>
<style type="text/css">
.online-service { position:fixed; top:220px; right:0px; z-index:99; }
.online-service .service-tips { display:block; cursor:pointer; }
.online-service.hover .service-tips { display:none; }
.net{
100;
height:10000px;
}
</style>
</head>

<body>
<div class="nei"></div>
<div class="online-service">
<div class="service-tips">
<a href="tencent://message/?uin=2991236894&Site=在线客服&Menu=yes" target="_blank">
<img alt="QQ" src="http://wpa.qq.com/pa?p=1:2991236894:1" border="0">
</a>
</div>
</div>
</body>
</html>

效果:

页面嵌入QQ功能(点QQ建立一个临时会话,显示在页面的固定位置)第1张

页面嵌入QQ功能(点QQ建立一个临时会话,显示在页面的固定位置)第2张

免责声明:文章转载自《页面嵌入QQ功能(点QQ建立一个临时会话,显示在页面的固定位置)》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇JS开发调试Debian下Apache2 Mysql5 Php5的安顿设置配备铺排下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

div块元素垂直水平居中方法总结

1、已知块级元素的宽和高,使用绝对定位+外边距设定水平垂直居中。 父元素position:relative,子元素position:absolute;top:50%;left:50%;margin-top:-height/2;margin-left:-width/2; 效果图如下 代码: <div class="box"> <d...

ADO中记录集recordSet的使用

_RecordsetPtr使用方法 _variant_t vUsername,vID,vname; //变量声明_RecordsetPtr m_pRecordset;     //记录集CString strid;_ConnectionPtr connection;m_pRecordset.CreateInstance(__uuidof( Record...

移动端触屏滑动事件

移动端触屏滑动的效果其实就是图片轮播,在PC的页面上很好实现,绑定click和mouseover等事件来完成。但是在移动设备上,要实现这种轮播的效果,就需要用到核心的touch事件。处理touch事件能跟踪到屏幕滑动的每根手指。 以下是四种touch事件 touchstart:     //手指放到屏幕上时触发 touchmove:      //手指在屏...

CTeX学习心得总结

CTeX 又称 CTeX中文套装,是基于 Windows 下的 MiKTeX 的发行版,集成了编辑器WinEdt 和 PostScript 处理软件 Ghostscript 和 GSview 等主要工具。 CTeX 在MiKTeX 的基础上增加了对中文的完整支持。 CTeX 支持 CJK, xeCJK, CCT, TY 等多种中文 TeX 处理方式。 C...

c++ 数组元素拷贝到容器(copy)

#include <iostream> // cout #include <algorithm> // copy #include <vector> // vector using namespace std; int main () { int myints[]={10,20...

android的项目文件介绍

1.res目录存放Android的各种资源文件,比如layout存放布局文件main.xml,values存放各种xml格式的资源文件,字符串资源strings.xml,颜色资源文件:colors.xml;尺寸资源文件:dimens.xml.drawlable-ldpi,drawlable-mdpi,drawlable-hdpi则分别用于存放小、中、大三种...