博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用UL标签+CSS实现的柱状图
阅读量:5206 次
发布时间:2019-06-14

本文共 3070 字,大约阅读时间需要 10 分钟。

ExpandedBlockStart.gif
代码
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<
html 
xmlns
="http://www.w3.org/1999/xhtml"
>
 
<
head
>
  
<
title
>
基于CSS的柱状图实现
</
title
>
  
<
meta 
http-equiv
="Content-Type"
 content
="text/html; charset=UTF-8"
 
/>
    
<
style 
type
="text/css"
>
 body 
{
padding
:
0
;
margin
:
40px
;
font-size
:
9pt
;
font-family
:
Helvetica,Geneva,sans-serif
;
}
 h3 
{
font-weight
:
normal
;
display
:
block
;
width
:
600px
;
text-align
:
center
;
}
 
/*
ul
*/
 ul#q-graph 
{
  border
:
2px solid #0063be
;
  background
:
#adfe12 url(l2008524151456.png) repeat-x scroll 0 0 !important
;
  background
:
#adfe12 repeat-x scroll 0 0
;
  height
:
300px !important
;
  height
:
304px
;
  width
:
600px
;
  position
:
relative
;
  list-style
:
none
;
  margin
:
1.1em 1em 3.5em
;
  padding
:
0
;
 
}
 #q-graph li 
{
  position
:
absolute
;
  text-align
:
center
;
  bottom
:
0
;
  padding
:
0
  margin:0
;
 
}
  
/*
 ul li 
*/
 li.qtr 
{
  width
:
150px
;
  height
:
300px
;
  border-right
:
1px dotted #41a3e2
;
  z-index
:
2
;
 
}
 li#q1 
{
left
:
0
;
}
 li#q2 
{
left
:
150px
;
}
 li#q3 
{
left
:
300px
;
}
 li#q4 
{
left
:
450px
;
border-right
:
none
;
}
 
/*
 ul li ul 
*/
 #q-graph ul 
{
list-style
:
none
;
}
 
/*
 ul li ul li 
*/
 li.bar 
{
  width
:
34px
;
  color
:
#fff
;
 
}
 li.north 
{
  left
:
36px
;
  background
:
#ddd url(http://www.lanrentuku.com/images/uppic/200805280943450.gif) no-repeat 0 0
;
 
}
 li.south 
{
  left
:
80px
;
  background
:
#ddd url(http://www.lanrentuku.com/images/uppic/200805280943450.gif) no-repeat -34px 0
;
 
}
  
/*
 ul li divs 
*/
 li#ticks 
{
  left
:
0
;
  height
:
300px
;
  width
:
100%
;
  z-index
:
1
;
 
}
 div.ticks 
{
  position
:
relative
;
  height
:
60px
;
  border-top
:
1px dotted #41a3e2
;
 
}
 div.ticks:first-child 
{
border-top
:
none
;
}
 
/*
only4 Firefx IE 7+
*/
 div.ticks p 
{
  position
:
absolute
;
  left
:
103%
;
  top
:
-11pt
;
 
}
  
</
style
>
 
</
head
>
 
<
body
>
<
ul 
id
="q-graph"
>
 
<
li 
id
="q1"
 class
="qtr"
>
Q1
 
<
ul
>
  
<
li 
class
="north bar"
 style
="height:111px;"
>
18
</
li
>
  
<
li 
class
="south bar"
 style
="height:99px;"
>
16
</
li
>
 
</
ul
></
li
>
 
<
li 
id
="q2"
 class
="qtr"
>
Q2
 
<
ul
>
  
<
li 
class
="north bar"
 style
="height:198px;"
>
32
</
li
>
  
<
li 
class
="south bar"
 style
="height:210px;"
>
34
</
li
>
 
</
ul
></
li
>
 
<
li 
id
="q3"
 class
="qtr"
>
Q3
 
<
ul
>
  
<
li 
class
="north bar"
 style
="height:260px;"
>
43
</
li
>
  
<
li 
class
="south bar"
 style
="height:198px;"
>
32
</
li
>
 
</
ul
></
li
>
 
<
li 
id
="q4"
 class
="qtr"
>
Q4
 
<
ul
>
  
<
li 
class
="north bar"
 style
="height:111px;"
>
18
</
li
>
  
<
li 
class
="south bar"
 style
="height:198px;"
>
32
</
li
>
 
</
ul
></
li
>
  
<
li 
id
="ticks"
>
 
<
div 
class
="ticks"
><
p
>
50
</
p
></
div
>
 
<
div 
class
="ticks"
><
p
>
40
</
p
></
div
>
 
<
div 
class
="ticks"
><
p
>
30
</
p
></
div
>
 
<
div 
class
="ticks"
><
p
>
20
</
p
></
div
>
 
<
div 
class
="ticks"
><
p
>
10
</
p
></
div
>
</
li
>
</
ul
>
 
</
body
>
</
html
>
用UL标签+CSS实现的柱状图
<
br
/>
更多请访问:懒人图库  www.cnblogs.com/iztg

 

 代码如上:

  • Q1
    • 18
    • 16
  • Q2
    • 32
    • 34
  • Q3
    • 43
    • 32
  • Q4
    • 18
    • 32
  • 50

    40

    30

    20

    10

用UL标签+CSS实现的柱状图
更多请访问:www.cnblogs.com/iztg

转载于:https://www.cnblogs.com/gredswsh/archive/2011/01/07/1930309.html

你可能感兴趣的文章
java.lang.UnsupportedOperationException
查看>>
java-斐波那契数列的解法
查看>>
rackup工具
查看>>
Linux operating system (Ubuntu) 学习-1
查看>>
ajax-原生写法步骤
查看>>
.Net语言 APP开发平台——Smobiler学习日志:如何在手机上实现饼图图表
查看>>
svn完整备份迁移
查看>>
Python字典实现分析
查看>>
jenkins+testNG
查看>>
Java自定义范型的应用技巧
查看>>
[洛谷1485] 火枪打怪
查看>>
白话经典算法系列之六 快速排序 快速搞定
查看>>
错了:用流量能够放肆,有wifi则要节制
查看>>
CSS渐变字体、镂空字体、input框提示信息颜色、给图片加上内阴影、3/4圆
查看>>
https://zhidao.baidu.com/question/362784520674844572.html
查看>>
第八周
查看>>
my.cnf_For5.7_注释版
查看>>
【MFC 学习笔记】CFile读写文件
查看>>
Java 的IO操作初步(一)
查看>>
关于VGA时序的相应计算方式
查看>>