Submitted by gouki on 2008, June 19, 4:27 PM
在IE栏里输入http://www.neatcn.com,就会打开网页;输入ftp://www.test.com会打开FTP网站;输入mailto:aaa@aa.com,会自动调用outlook,那么,有没有想过这是什么原理呢?
其实,说白了,在windows下面,这很简单,只不过是windows把这些http,ftp,mailto开头的字符串加入了注册表,再通过注册表进行调用,如何为自己添加一个协议呢?请看全文(未翻译)
» 阅读全文
Tags: 协议
Software | 评论:0
| 阅读:21924
Submitted by gouki on 2008, June 19, 12:26 AM
JavaScript代码
- function showImg(){
- pw = parseInt( $(this).parent().css('width') );
- ph = parseInt( $(this).parent().css('height') );
- showImage = new Image();
- showImage.src = $(this).children('a').children('img').attr('src');
- sw = showImage.width;
- sh = showImage.height;
-
- idx = $('#bigPic li').index( $(this) );
- alert(showImage.src+' - '+sw+' - '+sh);
- if (sw > pw || sh > ph){
- if (sw > sh ){
- sh = Math.floor(sh * ( pw / sw ));
- sw = pw-10;
- }else {
- sw = Math.floor(sw * ( ph / sh ));
- sh = ph-10;
- }
-
-
- $(this).children('a').children('img').css({'width': sw,'height':sh,'paddingTop':3});
- }
- if (sh <= ph){
- $(this).css('marginTop',(ph - sh)/2).css('verticalAlign','middle');
- }
- if (sw <= pw){
- $(this).css('marginLeft' , (pw - sw)/2).css('textAlign','center');
- }
- if( idx == 0 ){
- $('#thumbnail a').trigger('click');
- }
- }
Mark it ,and update it on work time...
Tags: jquery, cycle
Javascript | 评论:0
| 阅读:24310
Submitted by gouki on 2008, June 16, 11:13 PM
长时间没有更新了,一是因为单位比较忙二来是老婆快生了。。
但一直不更新也不太好,这里送上一小段JS,FOR jQuery。
很多时候,我们需要在一堆图片列表里进行左移右移,比如我现在有10个IMG,我放到DIV里面默认显示5个,这时候我会在页面上留下两个按钮进行左移,右移,以前的移动可能会很复杂,自从有了jquery,一切变得这么简单。
XML/HTML代码
- <div id="pic_list">
- <span id="p_left"> << </span>
- <ul>
- <li><img src="aa.jpg" /><li>
- <li><img src="aa.jpg" /><li>
- <li><img src="aa.jpg" /><li>
- <li><img src="aa.jpg" /><li>
- <li><img src="aa.jpg" /><li>
- <li><img src="aa.jpg" /><li>
- <li><img src="aa.jpg" /><li>
- <li><img src="aa.jpg" /><li>
- <li><img src="aa.jpg" /><li>
- <li><img src="aa.jpg" /><li>
- </ul>
- <span id="p_right"> >> </span>
- </div>
- <script language="JavaScript">
- <!--
- $('#p_left').click(function(){
- var list_length = $('#pic_list ul li').length;
- $('#pic_list ul li:eq(0)').before( $('#pic_list ul li:eq('+(list_length-1)+')').remove() );
- });
- $('#p_right').click(function(){
- $('#pic_list ul').append( $('#pic_list ul li:eq(0)').remove() );
- });
- //-->
- </script>
具体样式我就不提供了,黑黑,这样的方法应该算是最简单的了。。毕竟你在做页面的时候,肯定会都把li的宽度设的一样
Javascript | 评论:0
| 阅读:19995
Submitted by gouki on 2008, June 6, 3:05 PM
网上流传的大师兄教程确实给了我们很多方便,只是大师兄教程却不是很全面。或许他给很多设计师们带来了福音,但对程序开发人员来说,并没有什么特别的高深之处。
不过,我还是挺佩服他的,毕竟,他将自己的思想和实现方法提供出来,如果每个人都这样,或许,我们能够再进步一些。呵呵
在工作,仍然是在使用着smarty,也在开发中积累了一点点的心得,逐步写出来,与大家共同分享,当然应该会存有错误,与大家一起改进。
smarty在使用时是需要配置的,最简单的配置方法就是将基本的变量写成一个数组,然后new Smarty之后,foreach一下,由$smarty自行加载,如:
---------------------------------------------
辛苦写了半天,结果超时了。下次补上,今天没时间了。
PHP | 评论:1
| 阅读:21173
Submitted by gouki on 2008, May 30, 4:37 PM
XML/HTML代码
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html>
- <head>
- <title> New Document </title>
- <script language="JavaScript" src="http://jqueryjs.googlecode.com/files/jquery-1.2.6.pack.js"> </script>
- </head>
-
- <body>
- <table>
- <tr>
- <td><span class="forupdate" name="price" id="price">1234.56</span></td>
- </tr>
- <tr>
- <td><span class="forupdate" name="number" id="number">55</span></td>
- </tr>
- </table>
-
- <script language="JavaScript">
- <!--
- $(document).ready(function(){
- $('.forupdate').dblclick(function(){
- var Input = "<input type='text' >";
- var InputValue = $(this).text();
- $(this).html( Input );
- $(this).children('input').attr('name', $(this).attr('name')+'_update')
- .attr('id', $(this).attr('id')+'_update')
- .val( InputValue );
- $('#'+$(this).attr('id')+'_update').focus()
- .blur( function(){
- //这里用ajax如果成功,再返回。否则。。
- //....现在不处理。
- $ajaxReturn = true;
- if( $ajaxReturn == true){
- $(this).parent().html( $(this).val() ) ;
- }
- });
- });
- });
- //-->
- </script>
- </body>
- </html>
可以拷贝到编辑器里,双击数字进行测试……
后记:虽然知道这种控件网上会很多,但是没料到会这么多……
贴一个地址吧,也是jQuery的插件:http://www.appelsiini.net/projects/jeditable,NND啥时候一生气,也搞成插件出来……
Javascript | 评论:0
| 阅读:23906