• document.body.clientHeight的取值

    有时候需要取页面的底部, 就会用到document.body.clientHeight , 在HTML 标准中(这一句就能取到整个页面的高度, 不论body 的实际内容到底有多高, 例如, 1074*768 的分辨率, 页面最大化时, 这个高度约为720 , 即使页面上只有一句"hello world" , 也仍然取到720. 可是在XHTML中, 如果body 体中只有一行, 则document.body.clientHeight 只能取到那一行的高度, 约20px, 这时如何还想取到整个页...阅读全文
    作者:admin | 分类:Javascript | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 非常大气的全屏幻灯效果

      <!--幻灯片--> <div id="header1"> <div class="main_visual"> <div class="flicking_con"><div class="flicking_inner"> <a class="" href="#">1</a> <a class="" href="#">2</a> <a class="on" href="#">3</a> </div></div> <div class="main_image"> <ul style="width: 1423px; overfl...阅读全文
    作者:admin | 分类:Javascript | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 网页跳转代码

    Javascript实现跳转 方法一: <script type="text/javascript">    document.location="http://wmphp.com"; </script> 方法二: <script type="text/javascript">   window.location="http://wmphp.com"; </script> 定时5秒钟跳转 <script type="text/javascript"> function goto(){ document.location="http://wmphp.com"; } setTimeout("goto()",5000); &l...阅读全文
    作者:admin | 分类:前端开发 | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • js在线弹窗

    在线弹窗,用于在线报名、在线客服、事件通知,在网站是非常实用的,下面是小编写的实例,如图:   写完后通过http://tool.chinaz.com/Tools/Html_Js.aspx 将HTML转JS代码,用于外链,在调用<script type=text/javascript src=""></script>. 写了几个小时,一个弹窗关闭的小问题,关键要getElementById("doyoo_monitor");找到主弹窗的ID。 关键窗口代码: function far_...阅读全文
    作者:admin | 分类:Javascript | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • HTML事件属性

    HTML 4 的新特性之一是可以使 HTML 事件触发浏览器中的行为,比方说当用户点击某个 HTML 元素时启动一段 JavaScript。 在现代浏览器中都内置有大量的事件处理器。这些处理器会监视特定的条件或用户行为,例如鼠标单击或浏览器窗口中完成加载某个图像。通过使用客户端的 JavaScript,可以将某些特定的事件处理器作为属性添加给特定的标签,并可以在事件发生时执行一个或多个 JavaScript 命令...阅读全文
    作者:admin | 分类:HTML | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 点击栏目后变色

    鼠标点击后栏目变色,需要做JS做判断,根据ID值,还有网站的访问地址,||代表或,两个域名访问时都会有相同的效果。方法如下: <title>点击栏目后变色</title> <link  href="./img/index.css" type="text/css" rel="stylesheet" /> </head> <body bgcolor="#111"> <!--导航--> <div id="header"> <div><img src="img/banner.png" alt="...阅读全文
    作者:admin | 分类:Javascript | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 滑动下拉导航菜单

    这个是由JS实现的,非常简洁,大家一看就能懂。 <title>滑动下拉导航菜单</title> <style> body{background-color: black;} *{list-style:none; text-decoration:none; margin:0;padding:0;} .nav{width:980px; margin:0 auto; background:url(nav.png) repeat-x;} .nav_1{height:40px; line-height:40px; display:block;} .nav_1 li{float:left; width:105px; text-alig...阅读全文
    作者:admin | 分类:Javascript | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • utf8格式上面多一行空白

    最近做php开发,我自己的习惯都是用utf-8编码,有时候却在网页顶部多了一个空白行,甚至引起了式样的错乱,后来google到这么一篇文章,彻底解决问题 UTF-8的BOM问题 通常情况下,使用Windows系统自带的记事本程序编写网页程序,但在编写或修改php博客系统代码后,进行调试时总是会出现如同以下几点问题: --不能登入或者不能登出; --页顶出现一条空白; --页顶出现错误警告; --其它不正常...阅读全文
    作者:admin | 分类:HTML | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 推荐两款JS写的带按钮的图片滚动效果

    <html > <head> <meta http-equiv="Content-Type" content="text/html; charset=GBK"> <style type="text/css"> body { position:relative; margin:0; padding:55px 0 0 0; } </style> <title>带左右箭头切换的自动滚动图片JS特效</title> <style type="text/css"> <!-- .rollBox { width:704px; overflow:hidden; padding:12px 0 5px ...阅读全文
    作者:admin | 分类:Javascript | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • html之marquee详解

    该标签不是HTML3.2的一部分,并且只支持MSIE3以后内核,所以如果你使用非IE内核浏览器(如:Netscape)可能无法看到下面一些很有意思的效果 该标签是个容器标签 语法: <marquee></marquee> 以下是一个最简单的例子: 代码如下: <marquee><font size=+3 color=red>Hello, World</font></marquee> 下面这两个事件经常用到: onMouseOut="this.start()"...阅读全文
    作者:admin | 分类:HTML | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • DIV+CSS+JS图片无缝滚动代码

    先了解一下对象的几个的属性: innerHTML:设置或获取位于对象起始和结束标签内的 HTML scrollHeight: 获取对象的滚动高度。 scrollLeft:设置或获取位于对象左边界和窗口中目前可见内容的最左端之间的距离 scrollTop:设置或获取位于对象最顶端和窗口中可见内容的最顶端之间的距离 scrollWidth:获取对象的滚动宽度 offsetHeight:获取对象相对于版面或由父坐标 offsetParent 属性指定的父坐标...阅读全文
    作者:admin | 分类:HTML | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |