发表日期: 2022-05-30 21:43:29 浏览次数:86
绍兴网站建设-设计/优化/推广/定制/搭建/维护/改版-【网站建设】

2011年末,罗星街道有幼儿园(所)5所,在园幼儿2084人,专任教师199人;小学4所,在校生6119人,专任教师294人,小学适龄儿童入学率100%;初中2所,在校生2671人,专任教师199人,初中适龄人口入学率、小升初升学率、九年义务教育覆盖率均达100%;普通高中2所,在校生4900人,专任教师376人。2011年,教育经费达10182万元,比上年增长2.1%。财政预算内教育经费10159万元,比上年增长1.6%,占财政总支出的比例为7.7%。 [1]
文化事业
2011年末,罗星街道有文化站1个,村(社区)文化活动中心15个;公共图书室15个,藏书2.5万册。 [1]
医疗卫生
2011年末,罗星街道有各级各类医疗卫生机构2个,病床260张,固定资产总值3950.1万元。专业卫生人员281人,其中执业医师123人,执业助理医师4人,注册护士120人。2011年,医疗机构(门诊部以上)完成诊疗37.3万人次。2011年,农村安全饮用水普及率100%,农村卫生厕所普及率98.9%。新型农村合作医疗参合人数2.4万人,参合率99.7%。 [1]
社会保障
2011年,罗星街道有城镇最低生活保障户数72户,人数124人,支出32.9万元,比上年增长47.5%,月人均221元,比上年增长12.2%。农村最低生活保障户数128户,人数204人,支出38.7万元,比上年增长-3.7%,月人均158元,比上年增长9.7%;农村五保集中供养15人,支出7.2万元;农村医疗救助1474人次,农村临时救助78人次,共支出19.0万元。国家抚恤、补助各类优抚对象110人,安置义务兵、士官等77人,抚恤事业费支出89.7万元。经常性社会救助工作站、点和慈善超市1个。2011年末,参加企业基本养老保险1.8万人,参加城镇职工基本医疗保险0.77万人;城乡社会养老保险参保人数7720人,参保率93.2%
一个照片浏览器的原型,使用 Position 分别把图片定为在左边、中间、右边,然后循环显示。使用顶部的链接来循环图像,或者在图像的左侧或右侧点击来循环图像。请注意,当调整窗口大小时,会重新定位图像。
<!doctype html><html lang="en"><head>
<meta charset="utf-8">
<title>jQuery UI 定位(Position) - 图像循环</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>
body {
margin: 0;
}
#container {
overflow: hidden;
position: relative;
height: 400px;
}
img {
position: absolute;
}
</style>
<script>
$(function() {
// 重构部件,去除这些插件方法
$.fn.left = function( using ) {
return this.position({
my: "right middle",
at: "left+25 middle",
of: "#container",
collision: "none",
using: using });
};
$.fn.right = function( using ) {
return this.position({
my: "left middle",
at: "right-25 middle",
of: "#container",
collision: "none",
using: using });
};
$.fn.center = function( using ) {
return this.position({
my: "center middle",
at: "center middle",
of: "#container",
using: using });
};
$( "img:eq(0)" ).left();
$( "img:eq(1)" ).center();
$( "img:eq(2)" ).right();
function animate( to ) {
$( this ).stop( true, false ).animate( to );
}
function next( event ) {
event.preventDefault();
$( "img:eq(2)" ).center( animate );
$( "img:eq(1)" ).left( animate );
$( "img:eq(0)" ).right().appendTo( "#container" );
}
function previous( event ) {
event.preventDefault();
$( "img:eq(0)" ).center( animate );
$( "img:eq(1)" ).right( animate );
$( "img:eq(2)" ).left().prependTo( "#container" );
}
$( "#previous" ).click( previous );
$( "#next" ).click( next );
$( "img" ).click(function( event ) {
$( "img" ).index( this ) === 0 ? previous( event ) : next( event );
});
$( window ).resize(function() {
$( "img:eq(0)" ).left( animate );
$( "img:eq(1)" ).center( animate );
$( "img:eq(2)" ).right( animate );
});
});
</script></head><body>
<div id="container">
<img src="/wp-content/uploads/2014/03/earth.jpg" width="458" height="308" alt="earth">
<img loading="lazy" src="/wp-content/uploads/2014/03/flight.jpg" width="512" height="307" alt="flight">
<img loading="lazy" src="/wp-content/uploads/2014/03/rocket.jpg" width="300" height="353" alt="rocket">
<a id="previous" href="#">上一个</a>
<a id="next" href="#">下一个</a></div>
</body></html>