摘要:        
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0,    阅读全文
posted @ 2020-08-09 23:31
13522679763-任国强
阅读(289)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<div class="container-fluid"> 我是流体容器 100%占满全部 </div> <div class="container"> 我是固定容器 居中 </div>    阅读全文
posted @ 2020-08-09 20:31
13522679763-任国强
阅读(94)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery 练习</title> <link rel="stylesheet" href="index.css"> <style> .todo-main li    阅读全文
posted @ 2020-08-09 20:06
13522679763-任国强
阅读(80)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>window.onload与$(document).ready()</title> </head> <body> <h1>测试window.onload与$(d    阅读全文
posted @ 2020-08-09 17:38
13522679763-任国强
阅读(102)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<script src="js/jquery-1.10.1.js" type="text/javascript" charset="utf-8"></script> <script src="js/myLib.js" type="text/javascript"></script> <script     阅读全文
posted @ 2020-08-09 17:23
13522679763-任国强
阅读(143)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> 扩展插件</title> <style type="text/css"> * { margin: 0px; } .div1 { position: absolute; width    阅读全文
posted @ 2020-08-09 17:09
13522679763-任国强
阅读(89)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>焦点轮播图</title> <style type="text/css"> /*去除内边距,没有链接下划线*/ * { margin: 0; padding: 0; text-de    阅读全文
posted @ 2020-08-09 16:02
13522679763-任国强
阅读(116)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> 自定义动画</title> <style type="text/css"> * { margin: 0px; } .div1 { position: absolute; widt    阅读全文
posted @ 2020-08-09 14:30
13522679763-任国强
阅读(185)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>淡入淡出</title> </head> <style type="text/css"> * { margin: 0px; } .div1 { position: absolute    阅读全文
posted @ 2020-08-09 14:07
13522679763-任国强
阅读(267)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE HTML> <html> <head> <meta charset="UTF-8"> <title> 事件委托</title> </head> <body> <ul> <li>1111</li> <li>2222</li> <li>3333</li> <li>4444</li>     阅读全文
posted @ 2020-08-09 13:56
13522679763-任国强
阅读(155)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> 事件绑定与解绑</title> </head> <style type="text/css"> * { margin: 0px; } .out { position: absol    阅读全文
posted @ 2020-08-09 13:32
13522679763-任国强
阅读(115)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" c    阅读全文
posted @ 2020-08-09 11:51
13522679763-任国强
阅读(89)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text    阅读全文
posted @ 2020-08-09 11:26
13522679763-任国强
阅读(194)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>文档_增删改</title> </head> <style type="text/css"> * { margin: 0px; } .div1 { position: absolu    阅读全文
posted @ 2020-08-09 10:54
13522679763-任国强
阅读(64)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>筛选_查找孩子-父母-兄弟标签</title> </head> <body> <div id="div1" class="box" title="one">class为box的di    阅读全文
posted @ 2020-08-09 10:32
13522679763-任国强
阅读(226)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>回到顶部</title> <style> #to_top { width: 30px; height: 40px; font: 14px/20px arial; text-alig    阅读全文
posted @ 2020-08-09 10:18
13522679763-任国强
阅读(82)
评论(0)
推荐(0)
        
            
        
            
    
        筛选_过滤 1. first() 2. last() 3. eq(index|-index) 4. filter(selector) 5. not(selector) 6. has(selector)
    
    
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>筛选_过滤</title> </head> <body> <ul> <li>AAAAA</li> <li title="hello" class="box2">BBBBB</li>    阅读全文
posted @ 2020-08-09 09:49
13522679763-任国强
阅读(65)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>元素尺寸</title> </head> <style> div { width: 100px; height: 150px; background: red; padding:     阅读全文
posted @ 2020-08-09 09:40
13522679763-任国强
阅读(79)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>13_元素滚动</title> </head> <body style="height: 2000px;"> <div class="test" style="border:1px    阅读全文
posted @ 2020-08-09 09:31
13522679763-任国强
阅读(338)
评论(0)
推荐(0)
        
            
        
        
摘要:        
<style type="text/css"> * { margin: 0px; } .div1 { position: absolute; width: 200px; height: 200px; top: 20px; left: 10px; background: blue; } .div2 {    阅读全文
posted @ 2020-08-09 08:58
13522679763-任国强
阅读(131)
评论(0)
推荐(0)
        
                    
                
浙公网安备 33010602011771号