gol
gol

hardy

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

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

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

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

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

×

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

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



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


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

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

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

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




کد PHP:
<style type="text/css">
div.loading {width:200px; height:200px; position:relative; float:left; margin:0 10px;}
div.one {background:#222;}
div.two {background:#09c;}
div.loading:after {display:block; content:"";
border-radius:2px;
height:2px; width:2px;
position:absolute;
margin:auto; left:0; top:0; right:0; bottom:0;
box-shadow:
10px 0 0 2px #eee,
7px 7px 0 2px #555,
0 10px 0 2px #555,
-7px 7px 0 2px #555,
-10px 0 0 2px #555,
-7px -7px 0 2px #888,
0 -10px 0 2px #ccc,
7px -7px 0 2px #ddd;
-webkit-animation:rotate 0.8s steps(8) infinite;
-o-animation:rotate 0.8s steps(8) infinite;
animation:rotate 0.8s steps(8) infinite;
}
@keyframes rotate {
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}
@-webkit-keyframes rotate {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
@-o-keyframes rotate {
from {-o-transform: rotate(0deg);}
to {-o-transform: rotate(360deg);}
}
/* second method */
div.loading2 {width:200px; height:200px; position:relative; float:left; margin:0 10px;}
div.three {background:#222;}
div.loading2 {width:200px; height:200px; background:#222; position:relative;}
div.loading2:before,
div.loading2:after {position:absolute; margin:auto; z-index:10; left:0; top:0; right:0; bottom:0; content:""; 
display:block; width:20px; height:20px; border:5px solid #fff; 
border-color:rgba(255,255,255,0.6) rgba(255,255,255,0.08) rgba(255,255,255,0.1) rgba(255,255,255,0.2) ; border-radius:200px;
}
div.loading2:before {
-webkit-animation:rotate1 1s steps(8) infinite;
-o-animation:rotate1 1s steps(8) infinite;
animation:rotate1 1s steps(8) infinite;
}
div.loading2:after {
-webkit-animation:rotate2 1s steps(8) infinite;
-o-animation:rotate2 1s steps(8) infinite;
animation:rotate2 1s steps(8) infinite;
}
@keyframes rotate1 {
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}
@-webkit-keyframes rotate1 {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
@-o-keyframes rotate1 {
from {-o-transform: rotate(0deg);}
to {-o-transform: rotate(360deg);}
}
@keyframes rotate2 {
from {transform: rotate(-45deg);}
to {transform: rotate(315deg);}
}
@-webkit-keyframes rotate2 {
from {-webkit-transform: rotate(-45deg);}
to {-webkit-transform: rotate(315deg);}
}
@-o-keyframes rotate2 {
from {-o-transform: rotate(-45deg);}
to {-o-transform: rotate(315deg);}
}
/* for loading method #3 */
.loading3 {background:#222; width:640px; margin:10px 0 0 10px; height:100px; position:relative;}
.loading3 .loader {width:100%; position:absolute; height:6px; left:0; top:50%; margin-top:-3px;}
.loading3 .loader span {opacity:0;
position:absolute;
display:block;
width: 6px;
height: 6px;
background: #fff;
border-radius: 5px;
}
.loading3 .loader span:nth-of-type(1) {
-webkit-animation: loader 3s infinite;
animation: loader 3s infinite;
}
.loading3 .loader span:nth-of-type(2) {
-webkit-animation: loader 3s 0.2s infinite;
animation: loader 3s 0.2s infinite;
}
.loading3 .loader span:nth-of-type(3) {
-webkit-animation: loader 3s 0.4s infinite;
animation: loader 3s 0.4s infinite;
}
.loading3 .loader span:nth-of-type(4) {
-webkit-animation: loader 3s 0.6s infinite;
animation: loader 3s 0.6s infinite;
}
.loading3 .loader span:nth-of-type(5) {
-webkit-animation: loader 3s 0.8s infinite;
animation: loader 3s 0.8s infinite;
}
@-webkit-keyframes loader {
0% {opacity:0.5;
-webkit-animation-timing-function: ease-in;
right:100%;
}
40% {
opacity:0.9;
-webkit-animation-timing-function: linear;
right:53%;
}
50% {
opacity:1;
-webkit-animation-timing-function: linear;
right:50%;
}
60% {
opacity:0.9;
-webkit-animation-timing-function: ease-out;
right:47%;
}
100% {
opacity:0.5;
-webkit-animation-timing-function: ease-out;
right:0;
}
}
@keyframes loader {
0% {opacity:0.5;
animation-timing-function: ease-in;
right:100%;}
40% {
opacity:0.9;		  
animation-timing-function: linear;
right:53%;}
50% {
opacity:1;
animation-timing-function: linear;
right:50%;}
60% {
opacity:0.9;
animation-timing-function: ease-out;
right:47%;}
100% {
opacity:0.5;
animation-timing-function: ease-out;
right:0}
}
/* for loading method #4 */
.loading4 {background: #222; width:200px; height:200px; margin:10px; position:relative;}

.loading4 .loader {position:absolute; left:50%; top:50%; margin:-14px 0 0 -14px; width:28px; height:28px;
-webkit-animation: spin 10s infinite linear;
animation: spin 10s infinite linear;
}
.loading4 .loader span {display:block; position:absolute; width:28px; height:28px; opacity:0;
-webkit-animation: orbit 6s infinite;
animation: orbit 6s infinite;
}
.loading4 .loader span:after {content:""; position:absolute; background:#fff; width:5px; height:5px; border-radius:5px;
}
.loading4 .loader span:nth-child(2) {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.loading4 .loader span:nth-child(3) {
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
.loading4 .loader span:nth-child(4) {
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
.loading4 .loader span:nth-child(5) {
-webkit-animation-delay: 1.2s;
animation-delay: 1.2s;
}
@-webkit-keyframes orbit {
0% {
-webkit-transform:rotate(0deg); opacity:1;
-webkit-animation-timing-function:ease-out;
}
8% {
-webkit-transform:rotate(120deg);
-webkit-animation-timing-function:linear;
}
30% {
-webkit-transform:rotate(240deg);
-webkit-animation-timing-function:ease-in-out;
}
40% {
-webkit-transform:rotate(420deg);
-webkit-animation-timing-function:linear;
}
65% {
-webkit-transform:rotate(540deg); opacity:1;
-webkit-animation-timing-function: ease-out;
}
70% {
-webkit-transform:rotate(660deg); opacity:1;
-webkit-animation-timing-function: ease-out;
}
70.1% {
-webkit-transform:rotate(660deg); opacity:0;
}
100% {
-webkit-transform:rotate(720deg); opacity:0;} 
}

@-webkit-keyframes spin { 
0% {-webkit-transform:rotate(0deg);}
100% {-webkit-transform:rotate(360deg);}
}
@keyframes orbit { 
0% {
transform:rotate(0deg); opacity:1;
animation-timing-function:ease-out;
}
8% {
transform:rotate(120deg);
animation-timing-function:linear;
}
30% {
transform:rotate(240deg);
animation-timing-function:ease-in-out;
}
40% {
transform:rotate(420deg);
animation-timing-function:linear;
}
65% {
transform:rotate(540deg); opacity:1;
animation-timing-function: ease-out;
}
70% {
transform:rotate(660deg); opacity:1;
animation-timing-function: ease-out;
}
70.1% {
transform:rotate(660deg); opacity:0;
}
100% {
transform:rotate(720deg); opacity:0;} 
}
@keyframes spin { 
0% {transform:rotate(0deg);}
100% {transform:rotate(360deg);}
}
</style>
<br><br>
<div class ="loading one"></div>
<div class ="loading two"></div>
<div class ="loading2 three"></div>
<br clear="all">
<div class ="loading3">
    <div class ="loader">
	   <span></span>
	   <span></span>
	   <span></span>
	   <span></span>
	   <span></span>
    </div>
</div>
<div class ="loading4">
    <div class ="loader">
	   <span></span>
	   <span></span>
	   <span></span>
	   <span></span>
	   <span></span>
    </div>
</div>
<br clear="all"><br>
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





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

برچسب ها :

23 - April - 2014 08 : 11 AM
اعتبار: اهدای موجودی بــانــکــ نقل قول این ارسال در یک پاسخ


subscription
quickreply advancequickreply report

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

ابزار موضوع



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