Showing
19 changed files
with
8 additions
and
5 deletions
@@ -540,8 +540,8 @@ | @@ -540,8 +540,8 @@ | ||
540 | } | 540 | } |
541 | votedNum = data.data ? data.data.length : 0; | 541 | votedNum = data.data ? data.data.length : 0; |
542 | if (votedNum > 0) { | 542 | if (votedNum > 0) { |
543 | - $("#float_bottom").hide(); | ||
544 | - $("#vote_bottom").hide(); | 543 | + $("#float_bottom").find("img").attr("src","images/bg_333.jpg"); |
544 | + $("#vote_bottom").find("img").attr("src","images/bg_333.jpg"); | ||
545 | } | 545 | } |
546 | $(data.data).each(function(index, item) { | 546 | $(data.data).each(function(index, item) { |
547 | $("div[id='"+ item.voteItemId +"']").addClass("vote_click"); | 547 | $("div[id='"+ item.voteItemId +"']").addClass("vote_click"); |
@@ -692,8 +692,8 @@ | @@ -692,8 +692,8 @@ | ||
692 | return; | 692 | return; |
693 | } else { | 693 | } else { |
694 | diaCover("投票成功"); | 694 | diaCover("投票成功"); |
695 | - $("#float_bottom").hide(); | ||
696 | - $("#vote_bottom").hide(); | 695 | + $("#float_bottom").find("img").attr("src","images/bg_333.jpg"); |
696 | + $("#vote_bottom").find("img").attr("src","images/bg_333.jpg"); | ||
697 | } | 697 | } |
698 | 698 | ||
699 | }, "json"); | 699 | }, "json"); |
@@ -52,6 +52,9 @@ img{ | @@ -52,6 +52,9 @@ img{ | ||
52 | /*text-align: center;*/ | 52 | /*text-align: center;*/ |
53 | cursor: pointer; | 53 | cursor: pointer; |
54 | } | 54 | } |
55 | +.voted_button{ | ||
56 | + background: url("images/voted.jpg") 0 0 no-repeat; | ||
57 | +} | ||
55 | .diaCover-p{ | 58 | .diaCover-p{ |
56 | position: fixed; | 59 | position: fixed; |
57 | background: black; | 60 | background: black; |
@@ -283,7 +286,7 @@ img{ | @@ -283,7 +286,7 @@ img{ | ||
283 | } | 286 | } |
284 | votedNum = data.data ? data.data.length : 0; | 287 | votedNum = data.data ? data.data.length : 0; |
285 | if (votedNum > 0) { | 288 | if (votedNum > 0) { |
286 | - $(".vote_button").hide(); | 289 | + $(".vote_button").addClass("voted_button"); |
287 | } | 290 | } |
288 | $(data.data).each(function(index, item) { | 291 | $(data.data).each(function(index, item) { |
289 | $("div[id='"+ item.voteItemId +"']").addClass("vote_click"); | 292 | $("div[id='"+ item.voteItemId +"']").addClass("vote_click"); |
-
Please register or login to post a comment