-
js实现网页背景自动淡入淡出
1.使用jquery使用 网页全屏背景图片自动淡入淡出效果
var _index=0;
var $img;
var imgNum;
$(function(){
$img=$("img");//一次获取图片对象引用,减少重复获取的内存消耗
imgNum=$img.size();
$img.each(function(){//初始化图片透明度,除了最后一个显示,其余全透明
$(this).css({opacity:0});
$img.eq(imgNum-1).css({opacity:1});
})
setInterval(exchangBj,5000);
})
function exchangBj(){
$img.each(function(){
if($(this).css("opacity")==1){
$(this).animate({opacity:0},3000);
}
})
if(_index>=imgNum){
_index=0;
}
$img.eq(_index).animate({opacity:1},3000);
_index ++;
}
- 2022-02-27 00:46:28下载
- 积分:1
-
价值99美元(magento推广插件)aw refer a friend 通过aheadWorks推荐朋友
价值99美元(magento推广插件)aw refer a friend 通过aheadWorks推荐朋友
价值99美元(magento推广插件)aw refer a friend 通过aheadWorks推荐朋友
- 2023-01-04 03:10:03下载
- 积分:1
-
门诊预约系统
实现了医院网上门诊预约的功能,包括相应的数据库代码,你值得拥有!!
- 2022-01-26 02:03:05下载
- 积分:1
-
Visual Chat v1.91 chat software source
聊天软件Visual Chat v1.91源码-Visual Chat v1.91 chat software source
- 2022-03-24 15:33:39下载
- 积分:1
-
neural-network-js
js实现神经网络算法,实现一个二分类的功能,屏幕上有红绿两种点,可以随机添加,算法自动分类,把他们划归到不同的颜色区域(js realize neural network algorithm, a binary function, there are two kinds of red and green dot on the screen, you can add a random, automatic classification algorithm, classified them into different color regions)
- 2016-06-19 00:08:24下载
- 积分:1
-
树形图
用js代码来画树形图,js继承,多态,dom操作
三级菜单
树形展开
- 2022-06-29 16:44:11下载
- 积分:1
-
JavaWeb下在线音乐分享源程序
供于学习,基于MyEclipse下开发的网页,实现了在线音乐分享功能
- 2023-01-01 03:40:09下载
- 积分:1
-
ssm项目
ssm项目,关于网上资源管理系统的代码,适合初学者,
- 2022-08-17 01:01:16下载
- 积分:1
-
java
JAVA读取Rfid
- 2022-03-14 02:54:58下载
- 积分:1
-
传智CRM模板
根据传智的教学视频自己编写的crm项目,还原度能达到80%以上吧,适合初学者分析代码用
- 2022-02-09 19:32:57下载
- 积分:1