发表日期: 2022-05-30 21:31:09 浏览次数:96
做网站金华

2011年末,东栅街道辖区总人口27965人,其中城镇常住人口27965人,城镇化率100%。另有流动人口19579人。总人口中,男性13769人,占49.2%;女性14196人,占50.8%;14岁以下4260人,占15.2%;15—64岁20983人,占75.0%;65岁以上2722人,占9.8%。总人口中,以汉族为主,达27729人,占99.2%;有土家、朝鲜、蒙古、回、满等17个少数民族,共236人,占0.8%。其中土家族44人,占少数民族人口的18.6%;朝鲜族44人,占18.6%。2011年,人口出生率10.17‰,人口死亡率4.97‰,人口自然增长率5.20‰。人口密度为每平方千米1096人。 [2]
经济编辑 播报
综述
2011年,东栅街道完成财政总收入2.92亿元,比上年增长27.2%。其中地方财政收入10088万元,比上年增长56.2%。人均财政收入10442元。 [2]
工业
2011年,东栅街道实现工业总产值17.91亿元,比上年增长10.4%,工业增加值占全街道地区生产总值的23.0%。2011年,规模以上工业企业17家,职工2459人,实现工业增加值10.99亿元,比上年增长5.9%。销售收入达到亿元以上的企业2家。
一个虚拟的视频播放器,带有喜欢/分享/统计按钮,每个按钮都带有自定义样式的工具提示框。
<!doctype html><html lang="en"><head>
<meta charset="utf-8">
<title>jQuery UI 工具提示框(Tooltip) - 视频播放器</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.9.1.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="http://jqueryui.com/resources/demos/style.css">
<style>
.player {
width: 500px;
height: 300px;
border: 2px groove gray;
background: rgb(200, 200, 200);
text-align: center;
line-height: 300px;
}
.ui-tooltip {
border: 1px solid white;
background: rgba(20, 20, 20, 1);
color: white;
}
.set {
display: inline-block;
}
.notification {
position: absolute;
display: inline-block;
font-size: 2em;
padding: .5em;
box-shadow: 2px 2px 5px -2px rgba(0,0,0,0.5);
}
</style>
<script>
$(function() {
function notify( input ) {
var msg = "已选择 " + $.trim( input.data( "tooltip-title" ) || input.text() );
$( "<div>" )
.appendTo( document.body )
.text( msg )
.addClass( "notification ui-state-default ui-corner-bottom" )
.position({
my: "center top",
at: "center top",
of: window })
.show({
effect: "blind"
})
.delay( 1000 )
.hide({
effect: "blind",
duration: "slow"
}, function() {
$( this ).remove();
});
}