发表日期: 2022-05-30 21:41:54 浏览次数:80
【网站建设】-绍兴网站建设-网站制作公司哪家好

2020年,罗星街道实现地区生产总值89.9亿元,财政总收入4.8亿元,其中一般公共预算收入2.6亿元;规上工业产值85.9亿元,固定资产投资82.4亿元;外贸进出口总额46.3亿元;实到外资1718.7万美元、增长393.7%。 [3]
农业
2011年,罗星街道农业总产值达到3.3亿元,比上年增长13.1%,农业增加值占全街道地区生产总值的5.3%。 [1]
2011年,罗星街道生产粮食7800吨,其中水稻5612吨,小麦1174吨,玉米1014吨;油料作物种植面积600亩,产量98吨;蔬菜种植面积2.4万亩,产量4.5万吨,其中瓠瓜3.1万吨,其他1.4万吨。 [1]
2011年,罗星街道生猪饲养量1.1万头,年末存栏0.6万头;羊饲养量700只,年末存栏200只。2011年,生产肉类289吨,其中猪肉190吨,羊肉12吨;畜牧业总产值1500万元,占农业总产值的4.5%。 [1]
2011年,罗星街道水果种植面积0.9万亩,产量22363吨,其中甜瓜2.0万吨,小蜜蜂葡萄2363吨。 [1]
罗星街道可用于水产养殖的淡水水面0.1平方千米。2011年,鱼塘养殖面积11.4公顷,产量265吨;拥有各类捕捞渔船22艘,捕捞水产90吨;水产品总产量355吨;渔业总产值470.2万元,占农业总产值的1.4%。 [1]
2011年,罗星街道有大型农业机械68台(辆)
点击按钮预览特效。
<!doctype html><html lang="en"><head>
<meta charset="utf-8">
<title>jQuery UI 特效 - 动画(Animation)演示</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; background: #fff; }
#effect h3 { margin: 0; padding: 0.4em; text-align: center; }
</style>
<script>
$(function() {
var state = true;
$( "#button" ).click(function() {
if ( state ) {
$( "#effect" ).animate({
backgroundColor: "#aa0000",
color: "#fff",
width: 500
}, 1000 );
} else {
$( "#effect" ).animate({
backgroundColor: "#fff",
color: "#000",
width: 240
}, 1000 );
}
state = !state;
});
});
</script></head><body>
<div class="toggler">
<div id="effect" class="ui-widget-content ui-corner-all">
<h3 class="ui-widget-header ui-corner-all">动画(Animation)</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>
<a href="#" id="button" class="ui-state-default ui-corner-all">切换特效</a>
</body></html>