水果老虎游戏网站wordpress打开速度慢很慢

当前位置:&>&&>& > 水果老虎机JS网页游戏代码
水果老虎机JS网页游戏代码
基于JavaScript的网页小游戏&&水果老虎机源代码,在网页上就可以玩老虎机了,呵呵。以前爱玩的小游戏,代码看上去并不复杂,写的很有水平,虽然界面还有进一步改进的空间,但已经很不错啦!
&!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&&
&meta http-equiv=&Content-Type& content=&text/ charset=utf-8& /&
&title&水果老虎机&/title&
&style type=&text/css&&
font-size:12
font-family:宋体;
padding:0;
height:110
.win_piece
background:rgba(255, 0, 0, 0.4) none repeat scroll 0 0 !
filter:alpha(opacity=40);
background-color:R
height:110
background:url(/jscss/demoimg/201204/b_bar.png) no-
background:url(/jscss/demoimg/201204/s_bar.png) no-
background:url(/jscss/demoimg/201204/bar.png) no-
background:url(/jscss/demoimg/201204/b_77.png) no-
background:url(/jscss/demoimg/201204/s_77.png) no-
background:url(/jscss/demoimg/.png) no-
background:url(/jscss/demoimg/201204/b_star.png) no-
background:url(/jscss/demoimg/201204/s_star.png) no-
background:url(/jscss/demoimg/201204/star.png) no-
.b_watermelons
background:url(/jscss/demoimg/201204/b_watermelons.png) no-
.s_watermelons
background:url(/jscss/demoimg/201204/s_watermelons.png) no-
.watermelons
background:url(/jscss/demoimg/201204/watermelons.png) no-
background:url(/jscss/demoimg/201204/b_alarm.png) no-
background:url(/jscss/demoimg/201204/s_alarm.png) no-
background:url(/jscss/demoimg/201204/alarm.png) no-
.b_coconut
background:url(/jscss/demoimg/201204/b_coconut.png) no-
.s_coconut
background:url(/jscss/demoimg/201204/s_coconut.png) no-
background:url(/jscss/demoimg/201204/coconut.png) no-
background:url(/jscss/demoimg/201204/b_orange.png) no-
background:url(/jscss/demoimg/201204/s_orange.png) no-
background:url(/jscss/demoimg/201204/orange.png) no-
background:url(/jscss/demoimg/201204/b_apple.png) no-
background:url(/jscss/demoimg/201204/s_apple.png) no-
background:url(/jscss/demoimg/201204/apple.png) no-
background:url(/jscss/demoimg/201204/cha.png) no-
.lhj_bet_table td
text-align:
.lhj_input
border-left:1px solid #999;
border-top:1px solid #999;
border-right:1px solid #
border-bottom:1px solid #
text-align:
.lhj_money_input
font-size:38
padding:0;
line-height:40
font-size:16
display:inline-
text-align:
.lhj_bet_table .lhj_bet_input
padding:0;
line-height:20
font-size:16
.lhj_bet_btn
display:inline-
line-height:40
text-align:
background-color:#
font-size:24
border-left:1px solid #
border-top:1px solid #
border-right:1px solid #999;
border-bottom:1px solid #999;
.lhj_disable{
&script type=&text/javascript&&
function wLaoHuJi(id) {
this.frameid =
this._doc =
this._config = {
cardwidth: 66,
cardheight: 66,
betcardwidth:87,
betcardheight:87,
runboxlength:4,
runloop:4,
this._piecelist = [];
this._multitype = {
&b_bar&:100,
&s_bar&:50,
&b_seven&: 40,
&b_star&:30,
&b_watermelons&:25,
&b_alarm&:20,
&b_coconut&:15,
&b_orange&:10,
&b_apple&:5,
&small&:2,
this._piecelistposition = {};
this._piecelistmulti = {};
this._piecelisttype = {};
this._money = 0;
this._total = 20; //默认为20分
this._startbox = 1; //上次结果,此次的起点
this._endbox = 1; //这是这次的结果
this._jumpnum = 1; //这些需要算出来
this._currentshowlist = [1];
this._isfirstbet =
this._isrun =
this._interval =
this._mainDiv =
this.frame = {
&piece&: {&bg&:null,&run&:null},
&bet&: null
this._self =
for (i = 1; i & 25; i++) {
this._piecelist.push(i);
wLaoHuJi.prototype.$ = function(id) {
if (!this._doc) {
this._doc =
if (id && typeof (id) === &string&) {
return this._doc.getElementById(id);
wLaoHuJi.prototype.isArray = function(obj) {
return Object.prototype.toString.call(obj) === '[object Array]';
wLaoHuJi.prototype.in_Array = function(arr, e) {
for (var i = 0; i & arr. i++) {
if (arr[i] == e)
//生成随机数
wLaoHuJi.prototype.rand = function(min, max) {
return parseInt(Math.random() * (max - min + 1) + min);
wLaoHuJi.prototype._getWinNum = function() {
var r = this.rand(1, 100);
var b = 2;
if (r == 100) {
//大Bar 1/100
else if (r & 97) {
//小Bar 2/100
else if (r &= 95 && r &= 97) {
//大77 3/100
else if (r &= 90 && r &= 94) {
//大星星 5/100
else if (r &= 84 && r &= 89) {
//大西瓜 6/100
else if (r &= 76 && r &= 83) {
//大铃铛 8/100
var ar = this.rand(1, 2);
switch (ar) {
else if (r &= 68 && r &= 75) {
//大椰子1 8/100
var ar = this.rand(1, 2);
switch (ar) {
else if (r &= 59 && r &= 68) {
//大桔子1 10/100
var ar = this.rand(1, 2);
switch (ar) {
else if (r &= 44 && r &= 58) {
//苹果 15/100
var ar = this.rand(1, 4);
switch (ar) {
else if (r &= 36 && r &= 43) {
//CHA 8/100
var ar = this.rand(1, 2);
switch (ar) {
var ar = this.rand(1, 7);
switch (ar) {
wLaoHuJi.prototype._getpieceinfo = function(i, j) {
switch (i + &-& + j) {
case &0-0&:
return { &type&:&orange&,&css&: &b_orange&, &list&: 21, &multi&: &b_orange& };
case &0-1&:
return { &type&: &alarm&, &css&: &b_alarm&, &list&: 22, &multi&: &b_alarm& };
case &0-2&:
return { &type&: &bar&, &css&: &s_bar&, &list&: 23, &multi&: &s_bar& };
case &0-3&:
return { &type&: &bar&, &css&: &b_bar&, &list&: 24, &multi&: &b_bar& };
case &0-4&:
return { &type&: &apple&, &css&: &b_apple&, &list&: 1, &multi&: &b_apple& };
case &0-5&:
return { &type&: &apple&, &css&: &s_apple&, &list&: 2, &multi&: &small& };
case &0-6&:
return { &type&: &coconut&, &css&: &b_coconut&, &list&: 3, &multi&: &b_coconut& };
case &1-0&:
return { &type&: &alarm&, &css&: &s_alarm&, &list&: 20, &multi&: &small& };
case &2-0&:
return { &type&: &apple&, &css&: &b_apple&, &list&: 19, &multi&: &b_apple& };
case &3-0&:
return { &type&: &cha&, &css&: &cha&, &list&: 18, &multi&: &cha& };
case &4-0&:
return { &type&: &star&, &css&: &s_star&, &list&: 17, &multi&: &small& };
case &5-0&:
return { &type&: &star&, &css&: &b_star&, &list&: 16, &multi&: &b_star& };
case &6-0&:
return { &type&: &coconut&, &css&: &b_coconut&, &list&: 15, &multi&: &b_coconut& };
case &6-1&:
return { &type&: &coconut&, &css&: &s_coconut&, &list&: 14, &multi&: &small& };
case &6-2&:
return { &type&: &apple&, &css&: &b_apple&, &list&: 13, &multi&: &b_apple& };
case &6-3&:
return { &type&: &seven&, &css&: &b_seven&, &list&: 12, &multi&: &b_seven& };
case &6-4&:
return { &type&: &seven&, &css&: &s_seven&, &list&: 11, &multi&: &small& };
case &6-5&:
return { &type&: &alarm&, &css&: &b_alarm&, &list&: 10, &multi&: &b_alarm& };
case &6-6&:
return { &type&: &orange&, &css&: &b_orange&, &list&: 9, &multi&: &b_orange& };
case &5-6&:
return { &type&: &orange&, &css&: &s_orange&, &list&: 8, &multi&: &small& };
case &4-6&:
return { &type&: &apple&, &css&: &b_apple&, &list&: 7, &multi&: &b_apple& };
case &3-6&:
return { &type&: &cha&, &css&: &cha&, &list&: 6, &multi&: &cha& };
case &2-6&:
return { &type&: &watermelons&, &css&: &s_watermelons&, &list&: 5, &multi&: &small& };
case &1-6&:
return { &type&: &watermelons&, &css&: &b_watermelons&, &list&: 4, &multi&: &b_watermelons& };
return { &type&: &&, &css&: &&, &list&: 0, &multi&: && };
//显示单个或多个灯
wLaoHuJi.prototype.showbox = function(index) {
var i, len, tpleft, tptop, box = '';
if (typeof (index) === 'number' && index & 0 && index & 25) {
tpleft = this._piecelistposition[index].
tptop = this._piecelistposition[index].
box = &&div style='position:width:& + this._config.cardwidth + &height:& + this._config.cardheight + &left:& + tpleft + &top:& + tptop + &' class='win_piece'&&/div&&;
this.frame.piece.run.innerHTML =
else if (this.isArray(index) && index.length & 0) {
len = index.
for (i = 0; i & i++) {
tpleft = this._piecelistposition[index[i]].
tptop = this._piecelistposition[index[i]].
box += &&div style='position:width:& + this._config.cardwidth + &height:& + this._config.cardheight + &left:& + tpleft + &top:& + tptop + &' class='win_piece'&&/div&&;
this.frame.piece.run.innerHTML =
//每次改变需要显示的box,返回速度
wLaoHuJi.prototype.changeshowlist = function(jumpindex) {
len = this._currentshowlist.length,
jumpmax = this._
switch (jumpindex) {
var v = this._currentshowlist[0] + 1;
this._currentshowlist.length = 0;
v = v & 24 ? v - 24 :
this._currentshowlist[0] =
return 400;
if (len == 1) {
var v = this._currentshowlist[0] + 1;
v = v & 24 ? v - 24 :
this._currentshowlist.push(v);
return 350;
if (len == 2) {
var v = this._currentshowlist[1] + 1;
v = v & 24 ? v - 24 :
this._currentshowlist.push(v);
return 300;
if (len == 3) {
var v = this._currentshowlist[2] + 1;
v = v & 24 ? v - 24 :
this._currentshowlist.push(v);
return 200;
case jumpmax - 1:
var v = this._currentshowlist[0] + 1;
this._currentshowlist.length = 0;
v = v & 24 ? v - 24 :
this._currentshowlist[0] =
return 800;
case jumpmax - 2:
var v = this._currentshowlist[0] + 1;
this._currentshowlist.length = 0;
v = v & 24 ? v - 24 :
this._currentshowlist[0] =
return 700;
case jumpmax - 3:
var v = this._currentshowlist[0] + 1;
this._currentshowlist.length = 0;
v = v & 24 ? v - 24 :
this._currentshowlist[0] =
return 600;
case jumpmax - 4:
var v = this._currentshowlist[0] + 1;
this._currentshowlist.length = 0;
v = v & 24 ? v - 24 :
this._currentshowlist[0] =
return 400;
case jumpmax - 5:
var v = this._currentshowlist[0] + 1;
this._currentshowlist.length = 0;
v = v & 24 ? v - 24 :
this._currentshowlist[0] =
return 300;
case jumpmax - 6:
var v = this._currentshowlist[1] + 1;
this._currentshowlist.length = 0;
v = v & 24 ? v - 24 :
this._currentshowlist[0] =
return 200;
case jumpmax - 7:
var v1 = this._currentshowlist[1] + 1;
var v2 = this._currentshowlist[2] + 1;
this._currentshowlist.length = 0;
v1 = v1 & 24 ? v1 - 24 : v1;
v2 = v2 & 24 ? v2 - 24 : v2;
this._currentshowlist[0] = v1;
this._currentshowlist[1] = v2;
return 100;
case jumpmax - 8:
var v1 = this._currentshowlist[1] + 1;
var v2 = this._currentshowlist[2] + 1;
var v3 = this._currentshowlist[3] + 1;
this._currentshowlist.length = 0;
v1 = v1 & 24 ? v1 - 24 : v1;
v2 = v2 & 24 ? v2 - 24 : v2;
v3 = v3 & 24 ? v3 - 24 : v3;
this._currentshowlist[0] = v1;
this._currentshowlist[1] = v2;
this._currentshowlist[2] = v3;
return 50;
for (i = 0; i & i++) {
this._currentshowlist[i]++;
if (this._currentshowlist[i] & 24) {
this._currentshowlist[i] -= 24;
return 30;
wLaoHuJi.prototype.run = function() {
var self = this._self,
time = 500,
shownum = 1,
boxmax = this._config.runboxlength,
runloopnum = 0,
jumpmax = this._jumpnum,
jumpindex = 0,
function timerdo() {
time = self.changeshowlist(jumpindex);
self.showbox(self._currentshowlist);
jumpindex++;
if (jumpindex &= jumpmax) {
clearTimeout(timer);
self._startbox = self._
setTimeout(function() { self.result(); }, 200);
timer = setTimeout(timerdo, time);
timerdo();
wLaoHuJi.prototype.result = function() {
var winbox = this._
var type = this._piecelisttype[winbox];
if (type == &cha& || type == &&) {
//未得奖,或别的奖,暂无
var betid = &lhj_bet_txt_& +
var betnum = parseInt(this.$(betid).value);
if (betnum & 0) {
this._money = parseInt(this._piecelistmulti[winbox]) *
this.$('lhj_ben_txt_money').innerHTML = this._
this._isfirstbet =
this._isrun =
this.$('lhj_ben_btn_start').disabled =
wLaoHuJi.prototype.init = function() {
var i, j, piecewidth, pieceheight, betwidth, betheight, tnhtml, piecehtml, bethtml, advwidth, advheight, advleft, advtop, bsheight, self = this._
this._mainDiv = this.$(this.frameid);
if (!this._mainDiv) {
alert(id + &不存在&);
piecewidth = (this._config.cardwidth + this._config.margin) * 7 + this._config.margin + 2;
pieceheight = (this._config.cardheight + this._config.margin) * 7 + this._config.margin + 2;
betwidth = (this._config.betcardwidth + this._config.margin) * 4 + 13;
betheight =
this._mainDiv.style.border = &1px solid green&;
this._mainDiv.style.width = (piecewidth + betwidth + 5) + &px&;
this._mainDiv.style.height = pieceheight + &px&;
this._mainDiv.style.margin = &0&;
this._mainDiv.style.padding = &0&;
mainhtml = &&table cellpadding='0' cellspacing='0' style='-moz-user-select:margin:0;padding:0;border:0'&&tr&&td&&div style = 'position:top:0left:0width:& + piecewidth + &height:& + pieceheight + &'&&div id='lhj_piece_bg' style='position:top:0,left:0;z-index:101;'&&/div&&div id='lhj_piece_run' style='position:top:0,left:0;z-index:102;'&&/div&&/div&&/td&&td valign='top'&&div id='lhj_bet'&&/div&&/td&&/tr&&/table&&;
this._mainDiv.innerHTML =
this.frame.piece.bg = this.$('lhj_piece_bg'); //this._mainDiv.childNodes[0].childNodes[0].childNodes[0];
this.frame.piece.run = this.$('lhj_piece_run');
this.frame.bet = this.$('lhj_bet'); //this._mainDiv.childNodes[0].childNodes[0].childNodes[1];
//初始化piece
piecehtml = [];
for (i = 0; i & 7; i++) {
for (j = 0; j & 7; j++) {
if (i == 0 || j == 0 || i == 6 || j == 6) {
var tpleft = j * (this._config.cardwidth + this._config.margin) + this._config.
var tptop = i * (this._config.cardheight + this._config.margin) + this._config.
var tpinfo = this._getpieceinfo(i, j);
piecehtml.push(&&div id='& + i + &-& + j + &' style='position:width:& + this._config.cardwidth + &height:& + this._config.cardheight + &left:& + tpleft + &top:& + tptop + &' class='piece & + tpinfo.css + &'&&/div&&);
this._piecelistposition[tpinfo.list] = { left: tpleft, top: tptop };
this._piecelistmulti[tpinfo.list] = this._multitype[tpinfo.multi];
this._piecelisttype[tpinfo.list] = tpinfo.
advwidth = (this._config.cardwidth + this._config.margin) * 5 - this._config.
advheight = (this._config.cardheight + this._config.margin) * 5 - this._config.
advleft = this._config.cardwidth + this._config.margin * 2;
advtop = this._config.cardheight + this._config.margin * 2;
piecehtml.push(&&div id='adv' style='position:border:1width:& + advwidth + &height:& + advheight + &z-index:102;left:& + advleft + &top:& + advtop + &'&&/div&&);
this.frame.piece.bg.innerHTML = piecehtml.join('');
//初始化bet
bethtml = [];
bsheight = betheight - this._config.betcardheight * 2 - 118 - 82;
bethtml.push(&&div style='width:& + (betwidth - 8) + &height:63margin:5px 5px 3px 3border:0'&&);
bethtml.push(&&span class='lhj_span'&得分&br /&&span class='lhj_input lhj_money_input' id='lhj_ben_txt_money' /&0&/span&&/span&&);
bethtml.push(&&span class='lhj_span'&总分&br /&&span class='lhj_input lhj_money_input' id='lhj_ben_txt_total' /&0&/span&&/span&&);
bethtml.push(&&/div&&);
bethtml.push(&&div style='width:& + (betwidth - 8) + &height:& + bsheight + &margin:2px 5px 3px 3border:1'&&);
bethtml.push(&&);
bethtml.push(&&/div&&);
bethtml.push(&&div style='width:& + (betwidth - 8) + &'&&);
bethtml.push(&&table cellpadding='0' cellspacing='0' class='lhj_bet_table'&&);
bethtml.push(&&tr&&);
bethtml.push(&&td&&div class='bet bar' id='lhj_bet_bar'&&/div&&/td&&);
bethtml.push(&&td&&div class='bet seven' id='lhj_bet_seven'&&/div&&/td&&);
bethtml.push(&&td&&div class='bet star' id='lhj_bet_star'&&/div&&/td&&);
bethtml.push(&&td&&div class='bet watermelons' id='lhj_bet_watermelons'&&/div&&/td&&);
bethtml.push(&&/tr&&);
bethtml.push(&&tr&&);
bethtml.push(&&td&&input type='text' id='lhj_bet_txt_bar' class='lhj_input lhj_bet_input' value='0' readOnly /&&/td&&);
bethtml.push(&&td&&input type='text' id='lhj_bet_txt_seven' class='lhj_input lhj_bet_input' value='0' readOnly /&&/td&&);
bethtml.push(&&td&&input type='text' id='lhj_bet_txt_star' class='lhj_input lhj_bet_input' value='0' readOnly /&&/td&&);
bethtml.push(&&td&&input type='text' id='lhj_bet_txt_watermelons' class='lhj_input lhj_bet_input' value='0' readOnly /&&/td&&);
bethtml.push(&&/tr&&);
bethtml.push(&&tr&&);
bethtml.push(&&td&&div class='bet alarm' id='lhj_bet_alarm'&&/div&&/td&&);
bethtml.push(&&td&&div class='bet coconut' id='lhj_bet_coconut'&&/div&&/td&&);
bethtml.push(&&td&&div class='bet orange' id='lhj_bet_orange'&&/div&&/td&&);
bethtml.push(&&td&&div class='bet apple' id='lhj_bet_apple'&&/div&&/td&&);
bethtml.push(&&/tr&&);
bethtml.push(&&tr&&);
bethtml.push(&&td&&input type='text' id='lhj_bet_txt_alarm' class='lhj_input lhj_bet_input' value='0' readOnly /&&/td&&);
bethtml.push(&&td&&input type='text' id='lhj_bet_txt_coconut' class='lhj_input lhj_bet_input' value='0' readOnly /&&/td&&);
bethtml.push(&&td&&input type='text' id='lhj_bet_txt_orange' class='lhj_input lhj_bet_input' value='0' readOnly /&&/td&&);
bethtml.push(&&td&&input type='text' id='lhj_bet_txt_apple' class='lhj_input lhj_bet_input' value='0' readOnly /&&/td&&);
bethtml.push(&&/tr&&);
bethtml.push(&&/table&&);
bethtml.push(&&/div&&);
bethtml.push(&&div style='width:& + betwidth + &text-align:'&&);
bethtml.push(&&span class='lhj_bet_btn' id='lhj_ben_btn_upload'&上传&/span&&span class='lhj_bet_btn' id='lhj_ben_btn_start'&开始&/span&&);
bethtml.push(&&/div&&);
this.frame.bet.innerHTML = bethtml.join('');
var betmoeny = function(id) {
if (self._isrun) {
//先将得分转过来
self._total += self._
self._money = 0;
self.$('lhj_ben_txt_total').innerHTML = self._
self.$('lhj_ben_txt_money').innerHTML = self._
if (self._isfirstbet) {
self.$('lhj_bet_txt_bar').value = 0;
self.$('lhj_bet_txt_seven').value = 0;
self.$('lhj_bet_txt_star').value = 0;
self.$('lhj_bet_txt_watermelons').value = 0;
self.$('lhj_bet_txt_alarm').value = 0;
self.$('lhj_bet_txt_coconut').value = 0;
self.$('lhj_bet_txt_orange').value = 0;
self.$('lhj_bet_txt_apple').value = 0;
self._isfirstbet =
var tpv = parseInt(self.$(id).value);
if (self._total & 0 && tpv & self._config.maxbet) {
self._total--;
self.$(id).value = tpv + 1;
self.$('lhj_ben_txt_total').innerHTML = self._
this.$('lhj_bet_bar').onclick = function() {
betmoeny('lhj_bet_txt_bar');
this.$('lhj_bet_seven').onclick = function() {
betmoeny('lhj_bet_txt_seven');
this.$('lhj_bet_star').onclick = function() {
betmoeny('lhj_bet_txt_star');
this.$('lhj_bet_watermelons').onclick = function() {
betmoeny('lhj_bet_txt_watermelons');
this.$('lhj_bet_alarm').onclick = function() {
betmoeny('lhj_bet_txt_alarm');
this.$('lhj_bet_coconut').onclick = function() {
betmoeny('lhj_bet_txt_coconut');
this.$('lhj_bet_orange').onclick = function() {
betmoeny('lhj_bet_txt_orange');
this.$('lhj_bet_apple').onclick = function() {
betmoeny('lhj_bet_txt_apple');
this.$('lhj_ben_btn_upload').onclick = function() {
alert('暂无此功能');
this.$('lhj_ben_btn_start').onclick = function() {
if (self._isrun) {
var betcount = parseInt(self.$('lhj_bet_txt_bar').value);
betcount += parseInt(self.$('lhj_bet_txt_seven').value);
betcount += parseInt(self.$('lhj_bet_txt_star').value);
betcount += parseInt(self.$('lhj_bet_txt_watermelons').value);
betcount += parseInt(self.$('lhj_bet_txt_alarm').value);
betcount += parseInt(self.$('lhj_bet_txt_coconut').value);
betcount += parseInt(self.$('lhj_bet_txt_orange').value);
betcount += parseInt(self.$('lhj_bet_txt_apple').value);
if (betcount == 0) {
alert(&尚未下注,请先下注!&);
//先将得分转过来
self._total += self._
self._money = 0;
self.$('lhj_ben_txt_total').innerHTML = self._
self.$('lhj_ben_txt_money').innerHTML = self._
//随机得到中奖结果
//判断分还够不够下注
if (self._isfirstbet) {
if (self._total & betcount) {
alert(&您的总分不够下注,请投币!&);
self._total -=
self.$('lhj_ben_txt_total').innerHTML = self._
this.addClass('lhj_disable');
this.setAttribute(&disabled&, &disabled&);
//self.$('lhj_ben_btn_start').disabled =
self._isrun =
alert('a');
self._endbox = self._getWinNum();
//算出运行步数
var step = (self._endbox - self._startbox) & 0 ? self._endbox - self._startbox : 24 - self._startbox + self._
self._jumpnum = 24 * 4 + //这些需要算出来
self.run();
//初始化默认总分
this.$('lhj_ben_txt_total').innerHTML = this._
&div id=&game&&&/div&
&script type=&text/javascript&&
window.onload = function() {
var g = new wLaoHuJi(&game&);
●【往下看,下一页更精彩】●
上一篇: 下一篇:
大家感兴趣的内容
最新的内容
| 关于我们 | 联系方式 |
Copyright & , All Rights Reserved.论坛热点推荐
查看: 4503|回复: 1
2011年度永修县房地产市场走势情况分析
立即注册,与更多好友畅游大江!
才可以下载或查看,没有帐号?
本帖最后由 家在九江 于
10:51 编辑
& && & 永修经过“十一五”时期的发展,经济总量扩张,主要经济指标翻番,经济发展成效显著,房地产业也得到了较快的发展,房地产市场呈现出一片繁荣火热的景象。随着城市框架全面扩大和市政基础设施进一步完善,县城旧城区改造力度的加大,庐山西海旅游休闲度假区的进一步开发,2011年度永修房地产市场总体保持了稳定健康发展的态势。商品房上市量和成交量均创历史新高。
一、房地产市场运行情况(一)新建商品房上市和成交量情况& && & 1、从数据上来看,2011年新建商品房批准上市面积㎡,上市套数3660套, 上年商品房批准上市面积㎡,上市套数2996套,较上年同比增长约30%。& && & 2、2011年商品房成交面积㎡,成交套数3171套,上年商品房成交面积㎡,成交套数2461套,较上年同比也增长约30%。从全年商品房成交量走势看:一季度高、二季度底、三季度高、四季度低。(二)商品房销售价格& && & 1、全年县城中心区商品住房成交均价是3500元/㎡、商铺成交均价是12000元/㎡、成交均价稳步增长:一季度均价2700元/㎡、二三季度均价3000元/㎡、四季度均价3500元/㎡。& && & 2、经调查统计到2012年2月中旬止,全县商品房实际成交均价:高层小高层3500元/㎡、多层(6+1)3700元/㎡、商铺14000元/㎡。& && & 3、邻县(区)商品房成交数据情况:共青成交3137套、成交面积380190㎡、成交均价2900元/㎡;德安成交2400套、成交面积260000㎡、成交均价2900/㎡;星子成交1400套、成交面积140000㎡、成交均价3200/㎡;武宁成交2000套、成交面积220000㎡、成交均价3400/㎡。(三)全县存量房(二手房)交易情况:住宅成交465套,面积43500㎡,非住宅成交65间,成交面积4500㎡,同比上年有小幅增长。全年成交走势是前高后低,逐季度减少。4 s( s& A) _3 q' o3 h- `/ b
二、商品房市场走势情况& && &1、城镇化快速发展带动房地产市场的火爆,前几年我县集中拿地的房地产开发企业很多,土地价格也是不断创出新高,由于县城中心地段城市规划受限制,中心地段住宅用地紧张,这两年集中开工建设项目也是如火如荼, 2011年新建商品房上市面积是近年来最多的一年。& && &2、从2011年商品房成交量走势看:一季度高、二季度底、三季度高、四季度低,前三季度成交量是稳中有升,四季度除星火小区职工购房外,成交量有所萎缩,但全年商品房成交量为近年来最高。在今年调控政策集中出台的情况下,能有这么好的成交量,证明永修的商品房市场刚性需求占主要。从网签客户统计数据看,乡镇在外打工等购房的人群占约50%,行政、企事业单位购房人群占约30%,外地购房人群占约20%。& && &3、商品房价格是稳步增长。一是尽管宏观调控、通胀、股市低迷等因素影响,商品房价格还是逐渐上扬,老百姓手里的钱是一年比一年贬值,居民买房情绪比较热情和冲动,不知道房价要涨到什么程度;二是土地价格的上涨是促使商品房价格上涨的主要因素,城区中心地段地块空置率几乎为零,商品房好卖—-土地价格上涨—-商品房价格上涨—-土地价格上涨…,形成了一个短期推高房价的联动;三是去年5月1日出台的商品房明码标价制(一房一价),我们觉得在一定程度上推高了商品房价格的上涨,开发商为省去二次价格备案申报的麻烦,普遍将商品房价格提高了10-15%进行价格备案。" C$ @5 c" U; q
三、房地产市场调控& && & 从2010年4月份开始,中央利用金融和行政手段,密集出台了房地产调控等相关政策。由于调控政策的叠加效应,到2011年第四季度,调控效果初见成效,四季度商品房成交量同比去年有所下降,在全国房地产市场调控的大环境下,11、12月份城区中心楼盘交易量比较低迷,看房的人多,成交的人少,但商品房价格还是没有松动现象,各开发企业是积极售房,谨慎拿地。调控对我县房地产市场购买力冲击不大,但由于银行按揭放款指标少,在一定程度上造成开发商资金链条总体相对紧张的现象,去年各开发企业在建工程抵押数量和宗数较往年大幅增长。2011年是房地产调控年,调控手段密集,调控的本质是抑制投机投资性炒房,促进房价合理回归,目的是促使这个行业更健康有序的发展。经过近两年的调控,房地产基本面还是发生了一些变化,市场参与者更趋于理智。& && & 李克强副总理在去年11月25日在河北廊坊考察保障性住房时讲话,要继续扎实推进保障性安居工程建设,保障性住房建设是重大民生工程,我国内需最大的潜力在城镇化,而房价过高则会抑制城镇化进程。建设保障房,有利于遏制房价过快上涨,助推城镇化,这会释放出巨大的消费和投资潜力,推动相关产业发展。特别是在当前世界经济又趋低迷,我国外部发展环境复杂、严峻的情况下,扎实推进保障房建设,对于扩大内需、保持经济平稳较快发展具有独特的重要作用。针对当前中国房地产市场形势,中国社科院金融研究所研究员易宪容的观点是:房地产市场限购令、限价令,对市场的作用和影响十分有限,房地产市场的未来走势要看信贷政策。& && & 行业专家对调控的解读是:中央的政策是有保有压、有扶有控、以静制动的调控,要抑制的是过旺的投机投资性需求,要正常供应的是普通商品房。在宏观政策调控之下,各地房地产市场价格出现松动的现象不是很多,这里存在着开发商与宏观调控的博弈、购房人与开发商的博弈等多种复杂关系。还存在着已购房群众对房地产市场出现大滑坡导致自己所购物业价值出现大缩水的担忧。从现时情况来看,各方力量都处于紧绷状态,不管哪一方出现松动,预计都将导致市场出现连锁反应。具体从我县来看,今年四季度房地产市场出现的变化,对房地产市场会有影响,不过不会很大。在宏观政策保持平稳的情况下,房地产市场由原先的卖方市场转变为现在的买方市场,市场正朝着理性和健康有序的发展。
四、2012年房地产市场形势& && & 今年1月31日,温家宝总理在国务院第六次全体会议上指出:继续严格执行并逐步完善抑制投机投资性需求的政策措施,促进房价合理回归,采取有效措施增加普通商品房供给。表示今年调控政策不会有大的变化,从当前市场形势和宏观调控来看,房地产市场的大幅震动只出现在一、二、三线城市。近日, 在央行提出要继续落实差别化住房信贷政策,满足首套房贷款需求之后,工行、建行等国有大型银行已将首套房的贷款利率回归至基准利率水平。国务院总理温家宝2月15日主持召开国务院常务会议,研究部署2012年深化经济体制改革重点工作时指出:推进农村集体土地确权登记发证,扩大农村土地承包经营权登记试点,制定出台农村集体土地征收条例。近年来,我县商品房外销数量逐年增多,如:西海温泉旅游度假村80%购房人是南昌等外地人群,这主要得益于永修城市规划、城市环境、基础设施的不断提升和完善,教育、医疗服务的提高,交通的便利,文化休闲旅游区的打造,住宅小区服务档次的提高等。另外,一、二、三线城市的限购政策一定程度上促进了四、五线城市房地产市场销量的增长。在投资上,房地产商和个人投资者的资金都会选择有升值潜力的城市投资。永修从交通、文化、旅游和地理位置来说,都是潜力很大的。从去年的商品房存销数据来看,普通商品房库存量剩约400多套,按照去年的成交量来看,商品房库存偏少。而今年新开工建设的房地产项目同比往年少,开工项目减少直接联动到商品房上市面积减少,但从今年1月份的销售数据看,全县商品房成交量比较稳定,商品房网签139套。如果全县商品房价格能控制在3500元/㎡以内的话,成交量应该比较稳定。今后5到10年城镇化的推进会带来房地产业的进一步发展,今年我县对城市的发展要加紧与南昌对接,进一步推进湖东新区开发建设力度,在城市建设、文化休闲旅游、住宅小区品味上多做功课,转变发展方式、集思广益,深入推进“三个基地一个中心”建设,把我县建设成为一个宜家、宜业、宜乐的城市。( I&&q* o+ o8 I: g
" h! D3 p: C# j+ z) i
" _, m8 A& ^8 q% R&&K) F
& && && && && && && && && && && && && && && && &&&永修县房地产管理局& && && && && && && && && && && && && && && && && && &日
景瓷网特惠价:¥8869.00元
工艺:釉上彩
方式:只需0元预约参与抽奖
奖品:电信版iPhone6
只能说加油吧
美女与瓷器
Powered by

我要回帖

更多关于 网站打开速度慢的原因 的文章

 

随机推荐