1 Star 0 Fork 1

Komomon/WCMS

forked from doujiaoer/WCMS 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
default.js 2.37 KB
一键复制 编辑 原始数据 按行查看 历史
//解决点击学院概况时,链接和下拉菜单同时实现的功能
/*$(document) //这是源代码
.on('click.bs.dropdown.data-api', clearMenus)
.on('click.bs.dropdown.data-api', '.dropdown form', function(e) {
e.stopPropagation()
})
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
.on('keydown.bs.dropdown.data-api', toggle + ',[role=menu]', Dropdown.prototype.keydown)
$(document).ready(function() {
$(document).off('click.bs.dropdown.data-api');
})*/
//实现鼠标悬停触发下拉菜单
$(document).ready(function() {
$(document).off('click.bs.dropdown.data-api'); //可点击超链接
DropdownOpen(); //调用
});
//鼠标滑过就展开子菜单
function DropdownOpen() {
var $dropdownLi = $('li.dropdown');
$dropdownLi.mouseover(function() {
$(this).addClass('open');
}).mouseout(function() {
$(this).removeClass('open');
});
}
//实现间隔时间切换一条通知公告
$(function() {
var settime;
$(".scrollNotice").hover(function() {
clearInterval(settime);
}, function() {
settime = setInterval(function() {
var $first = $(".scrollNotice ul:first"); //选取div下的第一个ul而不是li
var height = $first.find("li:first").height(); //获取第一个li的高度,为ul向上移做准备
$first.animate({ "marginTop": -height + "px" }, 600, function() {
$first.css({ marginTop: 0 }).find("li:first").appendTo($first); //设置上边距为0,为下一次移动做准备
});
}, 3000);
}).trigger("mouseleave"); //trigger方法的作用是触发被选元素的特定事件类型
});
//专业教育平台,实现鼠标移出/移进列表项,说明文字显示/隐藏动画效果
$(document).ready(function() {
$("#ulPEPlatform .list-group-item").hover(
function() {
$(this).find(".divPicText").stop().animate({
"height": 80
});
},
function() {
$(this).find(".divPicText").stop().animate({
"height": 0
});
}
);
});
$('a[title]').tooltip({ container: 'body' });
$('#editor').wysiwyg();
$("#userRegisterModal").modal('toggle');
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Komomon/WCMS.git
git@gitee.com:Komomon/WCMS.git
Komomon
WCMS
WCMS
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385