摘要:
<!DOCTYPE html><html lang="en" manifest="study.appcache"> <!-- study.appcache 引入 缓存清单 --><head> <meta charset="UTF-8"> <title>Document</title></head>< 阅读全文
摘要:
一:fullPage.js 是一个基于 jQuery 的插件,它能够帮你很方便、很轻松的制作出全屏网站。 github 官网 https://github.com/alvarotrigo/fullPage.js 中文演示地址 http://www.dowebok.com/ 1:引入文件: <!-- 阅读全文
摘要:
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>五角星评分案例</title> <style> * { padding: 0; margin: 0; } .comment { font-size: 40px; c 阅读全文
摘要:
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> ul { list-style-type: none; width: 200px; position: absolute 阅读全文
摘要:
<script> $(function () { $(window).scroll(function () { //获取页面卷曲出去的高度和.top的div的高度对比 if($(document).scrollTop()>$(".top").height()){ $(".nav").css({"po 阅读全文
摘要:
<!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title></title> <style type="text/css"> * { margin: 0; padding: 0; } ul { list-style: non 阅读全文
摘要:
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> div{ width: 400px; } img{ width:90px ; height:90px; vertical 阅读全文
摘要:
$(function () { //链式编程 $(".tab>li").mouseover(function () { $(this).addClass("active").siblings("li").removeClass("active"); //获取li的索引 var index=$(thi 阅读全文
摘要:
<script> $(function () { //先获取j_cbAll的这个复选框,注册点击事件,点击的时候让下面tbody中所有的复选框选中和不全选 //让tbody中所有的复选框的选中状态和当前的这个全选的复选框的选中状态一致 $("#j_cbAll").click(function () 阅读全文
摘要:
<script> //获取ul中所有的li,有鼠标进入事件,鼠标离开事件,点击事件 $(function () { //获取ul->li $("ul>li").mouseenter(function () { $(this).css("backgroundColor","red").siblings 阅读全文