Browse Source

专家信息页和修改页面的鼠标滚动覆盖底部问题解决

luyanan 8 years ago
parent
commit
ec7e33a885
2 changed files with 122 additions and 0 deletions
  1. 60 0
      src/main/webapp/information-brow.html
  2. 62 0
      src/main/webapp/information.html

+ 60 - 0
src/main/webapp/information-brow.html

@ -322,7 +322,67 @@
322 322
							if ($info.honors) {
323 323
								honorShow($info.honors);
324 324
							}
325
							 
326
					//下滑滚动不覆盖底部 
327
							var d;
328
							var t;
329
							$(function(){
330
							/*向下滚动时,header背景变半透明*/
331
							var top4=$("#container").height();
332
							console.log(top4);
333
							var top3=$(window).height();
334
							console.log(top3);
335
							$(document).scroll(function(){
336
							var top1 =$(document).scrollTop();	
337
							var top2=$("#container").height()-top3+(top3-80-394)-20;//变成绝对定位
325 338
							
339
							console.log(top2);
340
							console.log(top1);
341
							if(top1==0){
342
							$("#header").css("background","rgba(255,132,0,1)");
343
							$(".personal-infor").css("opacity","1");
344
							}else{
345
							$("#header").css("background","rgba(255,132,0,0.8)");
346
							$(".personal-infor").css("opacity","0.8");
347
							
348
							}
349
							if(top1!=0){
350
							$(".searchbox").fadeIn(1000);
351
							
352
							}else{
353
							$(".searchbox").fadeOut(1000);	
354
							
355
								}
356
							if(top1>=350){
357
							$("#serc-index").fadeIn(1000);
358
							
359
							}else{
360
							$("#serc-index").fadeOut(1000);	
361
							
362
							
363
								}
364
								
365
							if(top1>=300){
366
										$(".content-left").css({"position":"fixed","top":"80px"});
367
										if(top1>=top2)
368
									{
369
										$('.information-content').css("position","static");
370
										$(".content-left").css("position", "absolute");		
371
										$(".content-left").css("top", top4-394-20+"px");													
372
									}
373
									else{
374
											$('.information-content').css("position","relative");
375
											$(".content-left").css({"position":"fixed","top":"80px"});	
376
									}	
377
								}
378
							else{
379
							$(".content-left").css({"position":"static"});	
380
							
381
							}
382
							
383
							})	
384
							});
385
							//下滑滚动不覆盖底部 结束
326 386
						}
327 387
					}
328 388
				}

+ 62 - 0
src/main/webapp/information.html

@ -271,6 +271,68 @@
271 271
								honorShow($info.honors);
272 272
							}
273 273
							
274
							//下滑滚动不覆盖底部 
275
							var d;
276
							var t;
277
							$(function(){
278
							/*向下滚动时,header背景变半透明*/
279
							var top4=$("#container").height();
280
							console.log(top4);
281
							var top3=$(window).height();
282
							console.log(top3);
283
							$(document).scroll(function(){
284
							var top1 =$(document).scrollTop();	
285
							var top2=$("#container").height()-top3+(top3-80-394)-20;//变成绝对定位
286
							
287
							console.log(top2);
288
							console.log(top1);
289
							if(top1==0){
290
							$("#header").css("background","rgba(255,132,0,1)");
291
							$(".personal-infor").css("opacity","1");
292
							}else{
293
							$("#header").css("background","rgba(255,132,0,0.8)");
294
							$(".personal-infor").css("opacity","0.8");
295
							
296
							}
297
							if(top1!=0){
298
							$(".searchbox").fadeIn(1000);
299
							
300
							}else{
301
							$(".searchbox").fadeOut(1000);	
302
							
303
								}
304
							if(top1>=350){
305
							$("#serc-index").fadeIn(1000);
306
							
307
							}else{
308
							$("#serc-index").fadeOut(1000);	
309
							
310
							
311
								}
312
								
313
							if(top1>=300){
314
										$(".content-left").css({"position":"fixed","top":"80px"});
315
										if(top1>=top2)
316
									{
317
										$('.information-content').css("position","static");
318
										$(".content-left").css("position", "absolute");		
319
										$(".content-left").css("top", top4-394-20+"px");													
320
									}
321
									else{
322
											$('.information-content').css("position","relative");
323
											$(".content-left").css({"position":"fixed","top":"80px"});	
324
									}	
325
								}
326
							else{
327
							$(".content-left").css({"position":"static"});	
328
							
329
							}
330
							
331
							})	
332
							});
333
							//下滑滚动不覆盖底部 结束
334
							
335
							
274 336
						}
275 337
					}
276 338
				}