gol
gol

hardy

د‌ل های ما که به هم نزدیک باشن

دیگر چه فرقی می کند

که کجای این جهان باشیم

دور باش اما نزدیک

من از نزدیک بودن‌های دور می‌ترسم
«احمد شاملو»

×

توجه : دو ارسال نخستِ کاربرانِ جدید در تالار میدوری را پیش از نمایش دادن , مدیر تالار باید تایید کند .

Latest Threads  آخرین ارسال ها :
نمایش آخرین ارسال این موضوع
 
امتیاز موضوع:
  • 3 رأی - میانگین امیتازات : 1
  • 1
  • 2
  • 3
  • 4
  • 5
  
1 کاربر حاضر در تاپیک: (0 عضو, و 1 مهمان). 1 مهمان
نویسنده:میدوری
آخرین ارسال:میدوری
پاسخ: 1
بازدید: 4860
subscription
quickreply advancequickreply report



( ابزار سایت ) بازی خرگوش را بزن با CSS3
تغییر اندازه ی متن : zoomin zoomout default
Butterfly
نویسنده : admin میدوری
admin میدوری profile  
آفلاین
مدیر کل تالار
مدالهای میدوری1000500
1001011720
168241051
دسترسی به میدوری
ارسال یک ایمیل به این کاربر ارسال یک پیام خصوصی به این کاربر مشاهده وب سایت کاربر یافتن تمامی ارسال های این کاربر اعتبار:
اطلاعات میدوری


تاریخ عضویت:
05 November 2011

ارسال ها: 1,800
شماره کاربری: 1
میزان اعتبار:

محل سکونت: تهران
ماه تولد:
جنسيت:
آخرین دیدار :
تماس با میدوری
حالت میدوری
صفحه های میدوری
گوگل پلاس فیس بوک توییتر یوتیوب کلوب
اینستاگرام تلگرام
ارسال: #1
Heart بازی خرگوش را بزن با CSS3

rightarrow
بازی خرگوش را بزن با CSS3
بازی خرگوش را بزن بازی است که تا بحال در گیم سنترها و یا شهر بازی ها دیده اید (شرح بازی در اینجا) . و حالا فقط با استفاده از کد های CSS3 و چهار تصویر این بازی را می توانید درست کنید . ساده است ولی چون با CSS3 درست شده شاید خالی از لطف نباشد . نمونه ی زنده در زیر هست و برای بررسی دوستان , کدها را در پایان گذاشته ام .



کد PHP:
<style type="text/css">
#whack {position: relative; margin:100px auto; width:440px; height:400px;}
#rat {position:absolute; left:0; top:0; width:440px; height:400px; background:url(mounds.png); overflow:hidden; border-radius:10px;
 box-shadow:0 15px 10px -15px rgba(0,0,0,0.9);
 }
#timer {width:20px; height:300px; background:url(timer.png) left center; position:absolute; right:2px; bottom:50px; z-index:100; border-radius:20px;
-moz-animation: timer 15s 0s 1 linear normal forwards;
-webkit-animation: timer 15s 0s 1 linear normal forwards;
-o-animation: timer 15s 0s 1 linear normal forwards;
animation: timer 15s 0s 1 linear normal forwards;
}
#whack .replay {display:block; font:bold 25px/30px arial, sans-serif; color:#fff; text-decoration:none; position:absolute; top:20px; left:160px; 
width:128px; text-align:center; text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);}
#whack .replay:hover {color:#c00;}
#whack p {display:block; font:bold 25px/30px arial, sans-serif; color:#fff; position:absolute; bottom:20px; left:160px; width:128px; 
text-align:center; padding:0; margin:0; text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);}
.rats {display:none;}
#rat1 + label {position:absolute; left:27px; bottom:265px;
-moz-animation: rat1 15s 0s 1 linear normal forwards;
-webkit-animation: rat1 15s 0s 1 linear normal forwards;
-o-animation: rat1 15s 0s 1 linear normal forwards;
animation: rat1 15s 0s 1 linear normal forwards;
}
#rat2 + label {position:absolute; left:283px; bottom:265px;
-moz-animation: rat2 15s 0s 1 linear normal forwards;
-webkit-animation: rat2 15s 0s 1 linear normal forwards;
-o-animation: rat2 15s 0s 1 linear normal forwards;
animation: rat2 15s 0s 1 linear normal forwards;
}
#rat3 + label {position:absolute; left:154px; bottom:176px;
-moz-animation: rat3 15s 0s 1 linear normal forwards;
-webkit-animation: rat3 15s 0s 1 linear normal forwards;
-o-animation: rat3 15s 0s 1 linear normal forwards;
animation: rat3 15s 0s 1 linear normal forwards;
}
#rat4 + label {position:absolute; left:27px; bottom:88px;
-moz-animation: rat4 15s 0s 1 linear normal forwards;
-webkit-animation: rat4 15s 0s 1 linear normal forwards;
-o-animation: rat4 15s 0s 1 linear normal forwards;
animation: rat4 15s 0s 1 linear normal forwards;
}
#rat5 + label {position:absolute; left:283px; bottom:88px;
-moz-animation: rat5 15s 0s 1 linear normal forwards;
-webkit-animation: rat5 15s 0s 1 linear normal forwards;
-o-animation: rat5 15s 0s 1 linear normal forwards;
animation: rat5 15s 0s 1 linear normal forwards;
}
#rat6 + label {position:absolute; left:27px; bottom:265px;
-moz-animation: rat6 15s 0s 1 linear normal forwards;
-webkit-animation: rat6 15s 0s 1 linear normal forwards;
-o-animation: rat6 15s 0s 1 linear normal forwards;
animation: rat6 15s 0s 1 linear normal forwards;
}
#rat7 + label {position:absolute; left:283px; bottom:265px;
-moz-animation: rat7 15s 0s 1 linear normal forwards;
-webkit-animation: rat7 15s 0s 1 linear normal forwards;
-o-animation: rat7 15s 0s 1 linear normal forwards;
animation: rat7 15s 0s 1 linear normal forwards;
}
#rat8 + label {position:absolute; left:154px; bottom:176px;
-moz-animation: rat8 15s 0s 1 linear normal forwards;
-webkit-animation: rat8 15s 0s 1 linear normal forwards;
-o-animation: rat8 15s 0s 1 linear normal forwards;
animation: rat8 15s 0s 1 linear normal forwards;
}
#rat9 + label {position:absolute; left:27px; bottom:88px;
-moz-animation: rat9 15s 0s 1 linear normal forwards;
-webkit-animation: rat9 15s 0s 1 linear normal forwards;
-o-animation: rat9 15s 0s 1 linear normal forwards;
animation: rat9 15s 0s 1 linear normal forwards;
}
#rat10 + label {position:absolute; left:283px; bottom:88px;
-moz-animation: rat10 15s 0s 1 linear normal forwards;
-webkit-animation: rat10 15s 0s 1 linear normal forwards;
-o-animation: rat10 15s 0s 1 linear normal forwards;
animation: rat10 15s 0s 1 linear normal forwards;
}
#rat11 + label {position:absolute; left:27px; bottom:265px;
-moz-animation: rat11 15s 0s 1 linear normal forwards;
-webkit-animation: rat11 15s 0s 1 linear normal forwards;
-o-animation: rat11 15s 0s 1 linear normal forwards;
animation: rat11 15s 0s 1 linear normal forwards;
}
#rat12 + label {position:absolute; left:283px; bottom:265px;
-moz-animation: rat12 15s 0s 1 linear normal forwards;
-webkit-animation: rat12 15s 0s 1 linear normal forwards;
-o-animation: rat12 15s 0s 1 linear normal forwards;
animation: rat12 15s 0s 1 linear normal forwards;
}
#rat13 + label {position:absolute; left:154px; bottom:176px;
-moz-animation: rat13 15s 0s 1 linear normal forwards;
-webkit-animation: rat13 15s 0s 1 linear normal forwards;
-o-animation: rat13 15s 0s 1 linear normal forwards;
animation: rat13 15s 0s 1 linear normal forwards;
}
#rat14 + label {position:absolute; left:27px; bottom:88px;
-moz-animation: rat14 15s 0s 1 linear normal forwards;
-webkit-animation: rat14 15s 0s 1 linear normal forwards;
-o-animation: rat14 15s 0s 1 linear normal forwards;
animation: rat14 15s 0s 1 linear normal forwards;
}
#rat15 + label {position:absolute; left:283px; bottom:88px;
-moz-animation: rat15 15s 0s 1 linear normal forwards;
-webkit-animation: rat15 15s 0s 1 linear normal forwards;
-o-animation: rat15 15s 0s 1 linear normal forwards;
animation: rat15 15s 0s 1 linear normal forwards;
}

.rats + label {width:128px; height:0; background: url(rat.png) 0 0; overflow:hidden;}
.rats + label img {width:100%; height:100%; display:none;}
.rats:checked + label img {display:block;}

#score {position:absolute; left:200px; top:289px; width:50px; height:50px; overflow:hidden;}
#scores {margin-top:-750px;}
.score {display:block; width:50px; height:50px; border:0; padding:0; margin:0 0 -50px 0;
-moz-transition:0.25s;
-webkit-transition:0.25s;
-o-transition:0.25s;
transition:0.25s;
}
.score:checked {display:block; width:50px; height:50px; border:0; padding:0; margin:0;}
#scored b {display:block; width:50px; height:50px; font:bold 40px/50px arial, sans-serif; color:#c00; text-align:center;}

@-moz-keyframes rat1 {
0% {height:0;}
40% {height:0;}
41% {height:128px;}
46% {height:128px;}
47% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat2 {
0% {height:0;}
30% {height:0;}
31% {height:128px;}
40% {height:128px;}
41% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat3 {
0% {height:0;}
20% {height:0;}
21% {height:128px;}
26% {height:128px;}
27% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat4 {
0% {height:0;}
25% {height:0;}
26% {height:128px;}
33% {height:128px;}
34% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat5 {
0% {height:0;}
15% {height:0;}
16% {height:128px;}
21% {height:128px;}
22% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat6 {
0% {height:0;}
55% {height:0;}
56% {height:128px;}
60% {height:128px;}
61% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat7 {
0% {height:0;}
60% {height:0;}
62% {height:128px;}
68% {height:128px;}
69% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat8 {
0% {height:0;}
45% {height:0;}
46% {height:128px;}
51% {height:128px;}
52% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat9 {
0% {height:0;}
50% {height:0;}
51% {height:128px;}
55% {height:128px;}
56% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat10 {
0% {height:0;}
35% {height:0;}
36% {height:128px;}
41% {height:128px;}
42% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat11 {
0% {height:0;}
80% {height:0;}
81% {height:128px;}
86% {height:128px;}
87% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat12 {
0% {height:0;}
85% {height:0;}
87% {height:128px;}
93% {height:128px;}
94% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat13 {
0% {height:0;}
65% {height:0;}
66% {height:128px;}
71% {height:128px;}
72% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat14 {
0% {height:0;}
70% {height:0;}
71% {height:128px;}
76% {height:128px;}
77% {height:0;}
100% {height:0;}
}
@-moz-keyframes rat15 {
0% {height:0;}
75% {height:0;}
76% {height:128px;}
81% {height:128px;}
82% {height:0;}
100% {height:0;}
}
@-moz-keyframes timer {
0% {height:300px;}
100% {height:0;}
}

/* for Opera */
@-o-keyframes rat1 {
0% {height:0;}
40% {height:0;}
41% {height:128px;}
46% {height:128px;}
47% {height:0;}
100% {height:0;}
}
@-o-keyframes rat2 {
0% {height:0;}
30% {height:0;}
31% {height:128px;}
40% {height:128px;}
41% {height:0;}
100% {height:0;}
}
@-o-keyframes rat3 {
0% {height:0;}
20% {height:0;}
21% {height:128px;}
26% {height:128px;}
27% {height:0;}
100% {height:0;}
}
@-o-keyframes rat4 {
0% {height:0;}
25% {height:0;}
26% {height:128px;}
33% {height:128px;}
34% {height:0;}
100% {height:0;}
}
@-o-keyframes rat5 {
0% {height:0;}
15% {height:0;}
16% {height:128px;}
21% {height:128px;}
22% {height:0;}
100% {height:0;}
}
@-o-keyframes rat6 {
0% {height:0;}
55% {height:0;}
56% {height:128px;}
60% {height:128px;}
61% {height:0;}
100% {height:0;}
}
@-o-keyframes rat7 {
0% {height:0;}
60% {height:0;}
62% {height:128px;}
68% {height:128px;}
69% {height:0;}
100% {height:0;}
}
@-o-keyframes rat8 {
0% {height:0;}
45% {height:0;}
46% {height:128px;}
51% {height:128px;}
52% {height:0;}
100% {height:0;}
}
@-o-keyframes rat9 {
0% {height:0;}
50% {height:0;}
51% {height:128px;}
55% {height:128px;}
56% {height:0;}
100% {height:0;}
}
@-o-keyframes rat10 {
0% {height:0;}
35% {height:0;}
36% {height:128px;}
41% {height:128px;}
42% {height:0;}
100% {height:0;}
}
@-o-keyframes rat11 {
0% {height:0;}
80% {height:0;}
81% {height:128px;}
86% {height:128px;}
87% {height:0;}
100% {height:0;}
}
@-o-keyframes rat12 {
0% {height:0;}
85% {height:0;}
87% {height:128px;}
93% {height:128px;}
94% {height:0;}
100% {height:0;}
}
@-o-keyframes rat13 {
0% {height:0;}
65% {height:0;}
66% {height:128px;}
71% {height:128px;}
72% {height:0;}
100% {height:0;}
}
@-o-keyframes rat14 {
0% {height:0;}
70% {height:0;}
71% {height:128px;}
76% {height:128px;}
77% {height:0;}
100% {height:0;}
}
@-o-keyframes rat15 {
0% {height:0;}
75% {height:0;}
76% {height:128px;}
81% {height:128px;}
82% {height:0;}
100% {height:0;}
}
@-o-keyframes timer {
0% {height:300px;}
100% {height:0;}
}
/* for Safari and Chrome */
@-webkit-keyframes rat1 {
0% {height:0;}
40% {height:0;}
41% {height:128px;}
46% {height:128px;}
47% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat2 {
0% {height:0;}
30% {height:0;}
31% {height:128px;}
40% {height:128px;}
41% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat3 {
0% {height:0;}
20% {height:0;}
21% {height:128px;}
26% {height:128px;}
27% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat4 {
0% {height:0;}
25% {height:0;}
26% {height:128px;}
33% {height:128px;}
34% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat5 {
0% {height:0;}
15% {height:0;}
16% {height:128px;}
21% {height:128px;}
22% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat6 {
0% {height:0;}
55% {height:0;}
56% {height:128px;}
60% {height:128px;}
61% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat7 {
0% {height:0;}
60% {height:0;}
62% {height:128px;}
68% {height:128px;}
69% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat8 {
0% {height:0;}
45% {height:0;}
46% {height:128px;}
51% {height:128px;}
52% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat9 {
0% {height:0;}
50% {height:0;}
51% {height:128px;}
55% {height:128px;}
56% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat10 {
0% {height:0;}
35% {height:0;}
36% {height:128px;}
41% {height:128px;}
42% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat11 {
0% {height:0;}
80% {height:0;}
81% {height:128px;}
86% {height:128px;}
87% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat12 {
0% {height:0;}
85% {height:0;}
87% {height:128px;}
93% {height:128px;}
94% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat13 {
0% {height:0;}
65% {height:0;}
66% {height:128px;}
71% {height:128px;}
72% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat14 {
0% {height:0;}
70% {height:0;}
71% {height:128px;}
76% {height:128px;}
77% {height:0;}
100% {height:0;}
}
@-webkit-keyframes rat15 {
0% {height:0;}
75% {height:0;}
76% {height:128px;}
81% {height:128px;}
82% {height:0;}
100% {height:0;}
}
@-webkit-keyframes timer {
0% {height:300px;}
100% {height:0;}
}

/* for IE10 and latest Firefox */
@keyframes rat1 {
0% {height:0;}
40% {height:0;}
41% {height:128px;}
46% {height:128px;}
47% {height:0;}
100% {height:0;}
}
@keyframes rat2 {
0% {height:0;}
30% {height:0;}
31% {height:128px;}
40% {height:128px;}
41% {height:0;}
100% {height:0;}
}
@keyframes rat3 {
0% {height:0;}
20% {height:0;}
21% {height:128px;}
26% {height:128px;}
27% {height:0;}
100% {height:0;}
}
@keyframes rat4 {
0% {height:0;}
25% {height:0;}
26% {height:128px;}
33% {height:128px;}
34% {height:0;}
100% {height:0;}
}
@keyframes rat5 {
0% {height:0;}
15% {height:0;}
16% {height:128px;}
21% {height:128px;}
22% {height:0;}
100% {height:0;}
}
@keyframes rat6 {
0% {height:0;}
55% {height:0;}
56% {height:128px;}
60% {height:128px;}
61% {height:0;}
100% {height:0;}
}
@keyframes rat7 {
0% {height:0;}
60% {height:0;}
62% {height:128px;}
68% {height:128px;}
69% {height:0;}
100% {height:0;}
}
@keyframes rat8 {
0% {height:0;}
45% {height:0;}
46% {height:128px;}
51% {height:128px;}
52% {height:0;}
100% {height:0;}
}
@keyframes rat9 {
0% {height:0;}
50% {height:0;}
51% {height:128px;}
55% {height:128px;}
56% {height:0;}
100% {height:0;}
}
@keyframes rat10 {
0% {height:0;}
35% {height:0;}
36% {height:128px;}
41% {height:128px;}
42% {height:0;}
100% {height:0;}
}
@keyframes rat11 {
0% {height:0;}
80% {height:0;}
81% {height:128px;}
86% {height:128px;}
87% {height:0;}
100% {height:0;}
}
@keyframes rat12 {
0% {height:0;}
85% {height:0;}
87% {height:128px;}
93% {height:128px;}
94% {height:0;}
100% {height:0;}
}
@keyframes rat13 {
0% {height:0;}
65% {height:0;}
66% {height:128px;}
71% {height:128px;}
72% {height:0;}
100% {height:0;}
}
@keyframes rat14 {
0% {height:0;}
70% {height:0;}
71% {height:128px;}
76% {height:128px;}
77% {height:0;}
100% {height:0;}
}
@keyframes rat15 {
0% {height:0;}
75% {height:0;}
76% {height:128px;}
81% {height:128px;}
82% {height:0;}
100% {height:0;}
}
@keyframes timer {
0% {height:300px;}
100% {height:0;}
}
</style>
<div id="whack">
    <div id="rat">
	   <input name="rat1" id="rat1" class ="rats" type="radio"><label for="rat1"><img src="rat2.png" alt=""></label>
	   <input name="rat2" id="rat2" class ="rats" type="radio"><label for="rat2"><img src="rat2.png" alt=""></label>
	   <input name="rat3" id="rat3" class ="rats" type="radio"><label for="rat3"><img src="rat2.png" alt=""></label>
	   <input name="rat4" id="rat4" class ="rats" type="radio"><label for="rat4"><img src="rat2.png" alt=""></label>
	   <input name="rat5" id="rat5" class ="rats" type="radio"><label for="rat5"><img src="rat2.png" alt=""></label>
	   <input name="rat6" id="rat6" class ="rats" type="radio"><label for="rat6"><img src="rat2.png" alt=""></label>
	   <input name="rat7" id="rat7" class ="rats" type="radio"><label for="rat7"><img src="rat2.png" alt=""></label>
	   <input name="rat8" id="rat8" class ="rats" type="radio"><label for="rat8"><img src="rat2.png" alt=""></label>
	   <input name="rat9" id="rat9" class ="rats" type="radio"><label for="rat9"><img src="rat2.png" alt=""></label>
	   <input name="rat10" id="rat10" class ="rats" type="radio"><label for="rat10"><img src="rat2.png" alt=""></label>
	   <input name="rat11" id="rat11" class ="rats" type="radio"><label for="rat11"><img src="rat2.png" alt=""></label>
	   <input name="rat12" id="rat12" class ="rats" type="radio"><label for="rat12"><img src="rat2.png" alt=""></label>
	   <input name="rat13" id="rat13" class ="rats" type="radio"><label for="rat13"><img src="rat2.png" alt=""></label>
	   <input name="rat14" id="rat14" class ="rats" type="radio"><label for="rat14"><img src="rat2.png" alt=""></label>
	   <input name="rat15" id="rat15" class ="rats" type="radio"><label for="rat15"><img src="rat2.png" alt=""></label>
    </div>
    <div id="score">
	   <div id="scores">
		  <input name="rat1" id="score1" class ="score" checked="checked" type="radio">
		  <input name="rat2" id="score2" class ="score" checked="checked" type="radio">
		  <input name="rat3" id="score3" class ="score" checked="checked" type="radio">
		  <input name="rat4" id="score4" class ="score" checked="checked" type="radio">
		  <input name="rat5" id="score5" class ="score" checked="checked" type="radio">
		  <input name="rat6" id="score6" class ="score" checked="checked" type="radio">
		  <input name="rat7" id="score7" class ="score" checked="checked" type="radio">
		  <input name="rat8" id="score8" class ="score" checked="checked" type="radio">
		  <input name="rat9" id="score9" class ="score" checked="checked" type="radio">
		  <input name="rat10" id="score10" class ="score" checked="checked" type="radio">
		  <input name="rat11" id="score11" class ="score" checked="checked" type="radio">
		  <input name="rat12" id="score12" class ="score" checked="checked" type="radio">
		  <input name="rat13" id="score13" class ="score" checked="checked" type="radio">
		  <input name="rat14" id="score14" class ="score" checked="checked" type="radio">
		  <input name="rat15" id="score15" class ="score" checked="checked" type="radio">
		  <div id="scored"><b>00</b><b>01</b><b>02</b><b>03</b><b>04</b><b>05</b><b>06</b><b>07</b>
<b>08</b><b>09</b><b>10</b><b>11</b><b>12</b><b>13</b><b>14</b><b>15</b></div>
	   </div>
    </div>
    <p>SCORE</p>
    <div id="timer"></div>
    <a class ="replay" href="javascript:window.location%20=%20window.location;">REPLAY</a>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668





امضای میدوری :
[تصویر: midori-sign-500.png]
محل حضور کاربر در تالار :  admin میدوری در تالار ميدوری حضور ندارد .
ديدگاه کاربران برای مطلب : help (روی آیکون مورد نظر کلیک کنید تا دیدگاه شما ثبت شود . در صورت انصراف تا دوبار می توانید دیدگاه خود را ثبت کنید . برای پاک کردن دیدگاه روی همان آیکون یک بار کلیک کنید تا دیدگاه شما پاک شود .)

برچسب ها :

07 - May - 2014 19 : 12 AM
اعتبار: اهدای موجودی بــانــکــ نقل قول این ارسال در یک پاسخ


subscription
quickreply advancequickreply report

موضوع های مرتبط با این موضوع...
موضوع: نویسنده پاسخ: بازدید: آخرین ارسال
Heart abzar نمایش تصویرها بصورت معلق و چرخان با CSS3 میدوری 2 10,470 18 - December - 2018 10 : 06 PM
آخرین ارسال: میدوری
minioni abzar نوشته های نئونی با CSS3 میدوری 0 7,082 25 - June - 2016 11 : 07 PM
آخرین ارسال: میدوری
minioni abzar اسلاید شوهای زیبا و ابتکاری با CSS3 (طرح چهلم) میدوری 0 7,662 12 - June - 2016 05 : 05 PM
آخرین ارسال: میدوری
HumanFemale abzar اسلاید شوهای زیبا و ابتکاری با CSS3 (طرح سی و نهم) میدوری 0 7,894 17 - May - 2016 24 : 05 PM
آخرین ارسال: میدوری
Fish abzar اسلاید شوهای زیبا و ابتکاری با CSS3 (طرح بیست و نهم) میدوری 3 13,474 17 - October - 2015 49 : 11 PM
آخرین ارسال: Pishro

ابزار موضوع



1 کاربر حاضر در تاپیک: (0 عضو, و 1 مهمان). 1 مهمان