博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
The Image Gallery Revisited
阅读量:6090 次
发布时间:2019-06-20

本文共 2168 字,大约阅读时间需要 7 分钟。

Lets apply the Best practices to the Image Gallery .

/***      index.html      ***/

    
Image Gallery

Snapshiots

my image gallery

Choose an image

View Code

/***      showPic.js      ***/

/** * Created by Administrator on 9/9/2015. */function addLoadEvent(func) {    var oldonload = window.onload;    if( typeof window.onload != 'function') {        window.onload = func;    } else {        window.onload = function() {            oldonload();            func();        }    }}function prepareGallery() {    if( !document.getElementsByTagName )  return false;    if( !document.getElementById ) return false;    if( !document.getElementById("imagegallery") ) return false;    var gallery = document.getElementById("imagegallery");    var links = gallery.getElementsByTagName("a");    for(var i=0; i
View Code

/***      layout.css      ***/

body{
font-family: "Helvetica", "Arial", serif; color: #333; background-color: #ccc; margin: 1em 10%;}h1{
color: #333; /*background-color: #777;*/}a{
color: #c60; background-color: transparent; font-weight: bold; text-decoration: none;}ul{
padding: 0;}li{
float: left; padding: 1em; list-style: none;}img {
display: block; clear: both;}
View Code

 

I think there is a function you can use in the furture, thats the addLoadEvent() :

function addLoadEvent(func) {    var oldonload = window.onload;    if( typeof window.onload != 'function') {        window.onload = func;    } else {        window.onload = function() {            oldonload();            func();        }    }}

This is a good plan for the future expansion. 

This effectively creates a queue of functions to be executed when the page loads.

To add functions to this queue, I just need to write :
        addLoadEvent( firstFunction );
        addLoadEvent( secondFunction );

 

转载于:https://www.cnblogs.com/beyond-Acm/p/4797261.html

你可能感兴趣的文章
微信Access Token 缓存方法
查看>>
Eclipsed的SVN插件不能识别之前工作空间的项目
查看>>
Linux 查看iptables状态-重启
查看>>
amazeui学习笔记一(开始使用2)--布局示例layouts
查看>>
c#中lock的使用(用于预约超出限额的流程)
查看>>
ODI基于源表时间戳字段获取增量数据
查看>>
并发容器之CopyOnWriteArrayList(转载)
查看>>
什么是AAC音频格式 AAC-LC 和 AAC-HE的区别是什么
查看>>
原创:goldengate从11.2升级到12.1.2
查看>>
Quartz
查看>>
正则表达式的语法规则
查看>>
C#一个关于委托和事件通俗易懂的例子
查看>>
类似于SVN的文档内容差异对比工具winmerge
查看>>
Cause: java.sql.SQLException: The user specified as a definer ('root'@'%') does not exist
查看>>
quratz线程
查看>>
execnet: rapid multi-Python deployment
查看>>
windows修改3389端口
查看>>
关于JavaScript词法
查看>>
FreeSwitch中的会议功能(4)
查看>>
MySQL中创建用户分配权限(到指定数据库或者指定数据库表中)
查看>>