登录
首页 » PHP » ColoredLists_v1.0

ColoredLists_v1.0

于 2015-04-30 发布 文件大小:402KB
0 187
下载积分: 1 下载次数: 1

代码说明:

  colored list. php application. Very nice in learning the use of php classes with pdo and ajax.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Mell.js - 自己的JS框架
    自己开发的JS框架,区别于传统框架。基于过程管理而非面向对象。本框架是面向过程管理框架。相对面向对象框架更高效,更节省系统资源,可控性更强,更适合多屏运用。
    2022-02-14 09:13:01下载
    积分:1
  • 旅游网站源码
    此网站项目是期末项目,包含了一个旅游网站需要具备的常用功能,参考了百度旅游,使用语言是PHP,里面还配有使用说明
    2022-08-22 17:41:03下载
    积分:1
  • 海峡软件精品下载v2.5
    资源描述代码名称:  海峡软件精品下载v2.5   添加日期:  2000-12-11 所属分类: ASP代码>文件操作   总下载次数: 524 文件大小: 63KB   适用环境: Unix/WINNT 评定级别:     上传者: roland  下载地址: 按此下载   代码效果演示: 暂无   详细介绍: 一个不错的软件下载系统,功能也非同一般,商业用途还需要888元呢!【程序主要功能】 1. 软件在线登记, 在线生效。 2. 提供软件搜索功能。 3. 提供点击计数功能, 同一IP点击多次无效。 4. 随时可以增加删除类别,删除软件。 5. 管理名:admin 管理密码:admin 
    2022-08-12 00:07:42下载
    积分:1
  • SoftwareNetBank(includeDesignDocumentandTestReport
    一个利用ASP.NET开发的网上银行子系统,含有相关的设计分析,以及测试报告,类图等软件工程文档(A use of ASP.NET development of Internet banking subsystem, containing the relevant design and analysis, as well as test reports, class diagram, such as software engineering documents)
    2008-03-21 16:57:02下载
    积分:1
  • maccms_php6
    说明:  采用PHP/MySQL数据库运行的全新且完善的强大视频电影系统。完美支持众多视频网站和高清播放器(failed to translate)
    2011-04-12 15:42:40下载
    积分:1
  • 基于ssh的校园宿舍管理系统(全原装手打,含数据库脚本)
      该校园宿舍管理系统采用SSH jsp web技术框架而成,具体功能包括:  1.楼层管理员管理  2.学生管理  3.楼层管理  4.宿舍管理  5.学生入住登记  6.学生寝室调换  7.学生迁出登记  8.学生缺勤记录  9.修改密码 10.退出登录     初始界面登录有三种身份,可自由选择,具体登录请自行查询数据库登录,好了不多说了,好货!
    2019-11-16下载
    积分:1
  • bbs_3.4
    使用XHTML+CSS架构,令页面结构化,节省了静态页面代码的传输,同时也易于修改界面,更符合WEB标准; 论坛采用Cookies、Session、Application等技术对论坛数据进行缓存,减少对数据库的访问,提高论坛的性能。可以承载较多的用户同时访问; 数据分表功能,减轻数据量大的时候访问数据库的负担; 支持多皮肤、风格切换功能; 框架模式+ 平板模式的显示方式,用户可以根据自己的爱好来选择; 优化论坛页面关键字搜索,让论坛更容易被搜索引擎收录; 可扩展插件,为广大朋友提供了一个广阔的论坛服务扩展空间; 站长可以根据不同版面添加不同的顶部广告; 发帖采用HTML+UBB的方式,两种编辑器,互相转换、互相兼容; (Using XHTML+ CSS framework, with a page structure, saving the transmission of static page code, but also easy to modify the interface, more in line with standard WEB Forum uses Cookies, Session, Application and other technical data of the forum cache, reducing access to the database to improve the performance of the forum. Can host more users simultaneously access Data points table function, reduce the amount of data to access the database when the burden Support multi-skin, style switching function Frame mode+ tablet mode is displayed, the user can choose according to their preferences Optimization forum page keyword search, lets be more easily indexed by search engines Extensible plug-in, for our friends to provide a broad forum for service expansion space Webmasters can add different layouts according to different top advertising Posting using HTML+ UBB way the two editors, interchangeable, compatible with each )
    2013-11-17 17:30:58下载
    积分:1
  • 易迅网络科技投票系统
    资源描述易讯网络科技目前所使用的投票系统,适合于首页的投票调查使用,结果采用条状百分比显示
    2022-02-27 01:32:18下载
    积分:1
  • FrCapture-master
    说明:  ## 视频截图工具 可以在预览视频的时候选择一个适合的界面把它截取下来,并存成图片。 ## 使用 ### 简单使用 主要文件: ``` <script src="poster.js"></script> ``` 在视频预览界面调用: ``` poster($('video')[0],function(e){ //console.log(e); if(e.bool){ //输出文件对象 var blob=e.data;//返回的是blob对象 console.log(blob); p.src=window.URL.createObjectURL(e.data);//创建一个临时预览路径 } }); ``` ### 使用extendvideo.js `extendvideo.js`与`poster.js`不同的是前者会在引入它的页面里每个`video`标签里增加一个`getPoster()`方法 。 用法: ``` var blob=$('video')[0].getPoster();//返回图片blob对象 ``` ## 原理 此视频截图工具,采用了canvas绘图函数实现video图片截取,产生base64编码图片信息,再通过转blob。 你的浏览器需要支持`HTML5`(### simple to use Main documents: . <script src= "poster.js" ></script> . Call on the video preview interface: . Poster ($('video') [0], function (E) {) //console.log (E); If (e.bool) { / / output file object Var blob=e.data; / / return is blob Console.log (BLOB); P.src=window.URL.createObjectURL (e.data); / / create a temporary preview path } }); . The use of extendvideo.js ### The difference between `extendvideo.js` and `poster.js` is that the former adds a `getPoster () method to each `video` tag in the page that is introduced to it. . Usage: . Var blob=$('video') [0].getPoster (BLOB); / / return picture object . ## principle This video capture tool uses a canvas drawing function to intercept video pictures, generate Base64 coded picture information, and then transfer blob. ## compatibility Your browser needs to support `HTML5`)
    2018-01-16 10:49:42下载
    积分:1
  • WebQQ
    WEBQQ登录,PHP版,无数据库,机器人专用(WEBQQ login, PHP version, no database, robots dedicated)
    2013-07-14 19:19:54下载
    积分:1
  • 696516资源总数
  • 106648会员总数
  • 8今日下载