发表日期: 2022-05-30 21:32:47 浏览次数:84
网站建设公司金华-金华网站制作-网络优化推广公司

2011年末,东栅街道有商业网点2144个。2011年,社会商品销售总额达58.38亿元,比上年增长15.4%;城乡集市贸易成交额0.47亿元,比上年增长5.1%。2011年,进出口总额9174万美元,比上年增长10.0%。其中出口7652万美元,比上年增长4.0%,主要产品有电器、电池、工艺礼品等。 [2]
金融业
2011年,东栅街道各类存款余额15.2亿元,各项贷款余额7.8亿元。 [2]
社会事业编辑 播报
教育事业
2011年末,东栅街道有幼儿园5所,在园幼儿1411人,专任教师139人;小学3所,在校生3459人,专任教师211人,小学适龄儿童入学率100%;初中3所,在校生2525人,专任教师195人,初中适龄人口入学率、小升初升学率、九年义务教育覆盖率均达100%。2011年,教育经费达2421.4万元,比上年增长26.9%;财政预算内教育经费2232.9万元,比上年增长53.8%,占财政总支出的比例为52.3%。 [2]
文化事业
2011年末,东栅街道有文化艺术团体59个,会员1510个;文化站1个,村、社区文化活动中心8个;公共图书室8个,藏书1万余册。 [2]
点击按钮预览特效。
<!doctype html><html lang="en"><head>
<meta charset="utf-8">
<title>jQuery UI 特效 - .effect() 演示</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>
.toggler { width: 500px; height: 200px; position: relative; }
#button { padding: .5em 1em; text-decoration: none; }
#effect { width: 240px; height: 135px; padding: 0.4em; position: relative; }
#effect h3 { margin: 0; padding: 0.4em; text-align: center; }
.ui-effects-transfer { border: 2px dotted gray; }
</style>
<script>
$(function() {
// 运行当前选中的特效
function runEffect() {
// 从中获取特效类型
var selectedEffect = $( "#effectTypes" ).val();
// 大多数的特效类型默认不需要传递选项
var options = {};
// 一些特效带有必需的参数
if ( selectedEffect === "scale" ) {
options = { percent: 0 };
} else if ( selectedEffect === "transfer" ) {
options = { to: "#button", className: "ui-effects-transfer" };
} else if ( selectedEffect === "size" ) {
options = { to: { width: 200, height: 60 } };
}
// 运行特效
$( "#effect" ).effect( selectedEffect, options, 500, callback );
};
// 回调函数
function callback() {
setTimeout(function() {
$( "#effect" ).removeAttr( "style" ).hide().fadeIn();
}, 1000 );
};
// 根据选择菜单值设置特效
$( "#button" ).click(function() {
runEffect();
return false;
});
});
</script></head><body>
<div class="toggler">
<div id="effect" class="ui-widget-content ui-corner-all">
<h3 class="ui-widget-header ui-corner-all">特效(Effect)</h3>
<p>
Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi. </p>
</div></div>
<select name="effects" id="effectTypes">
<option value="blind">百叶窗特效(Blind Effect)</option>
<option value="bounce">反弹特效(Bounce Effect)</option>
<option value="clip">剪辑特效(Clip Effect)</option>
<option value="drop">降落特效(Drop Effect)</option>
<option value="explode">爆炸特效(Explode Effect)</option>
<option value="fade">淡入淡出特效(Fade Effect)</option>
<option value="fold">折叠特效(Fold Effect)</option>
<option value="highlight">突出特效(Highlight Effect)</option>
<option value="puff">膨胀特效(Puff Effect)</option>
<option value="pulsate">跳动特效(Pulsate Effect)</option>
<option value="scale">缩放特效(Scale Effect)</option>
<option value="shake">震动特效(Shake Effect)</option>
<option value="size">尺寸特效(Size Effect)</option>
<option value="slide">滑动特效(Slide Effect)</option>
<option value="transfer">转移特效(Transfer Effect)</option></select>
<a href="#" id="button" class="ui-state-default ui-corner-all">运行特效</a>
</body></html>