国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JavaScript > 正文

jQuery+CSS 實(shí)現(xiàn)隨滾動(dòng)條增減的汽水瓶中的液體效果

2019-11-20 23:39:50
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
很有意思。小邪就跟著做了一個(gè)Demo,木有用插件,只掛了jQuery。
Demo 演示頁(yè)面

一. CSS+jQuery實(shí)現(xiàn)隨滾動(dòng)條增減汽水瓶中的液體:

  話說(shuō)喝汽水的那個(gè)網(wǎng)站是用一個(gè)瓶子的圖片,分為瓶口、瓶身、吸管還有瓶底。在這些圖片中瓶子內(nèi)部都是透明的,所以我們可以在底下一層按 x 軸平鋪液體的圖片,當(dāng)然記得弄好吸管,吸管則是按照 y 軸平鋪。其他具體的請(qǐng)看代碼中注釋。

  啊,對(duì)了,那家公司的地址在這里 - http://janploch.de/


復(fù)制代碼 代碼如下:

body {background:#fff url(bg_site.png);margin:0;}
#juice, #juice .inner, #bottle, #bottle .footer, #bottle .content, #bottle .header, #mid .inner {margin:0 auto;}
/*
* #juice 加不加 margin:0 auto; 無(wú)所謂啦
* 因?yàn)?position:fixed; 了所以 margin:0 auto; 自然就失效了
* 因?yàn)?#bottle 無(wú)法準(zhǔn)確設(shè)置寬度,所以自然加 margin:0 auto; 也沒(méi)用了
* 嘿嘿,這些都是小邪的錯(cuò)誤
*
* #bottle .footer, #bottle .content, #bottle .header 這幾個(gè)
* 分別是瓶底、瓶身、瓶口幾個(gè)位置的圖片
* 剩下的 #juice .inner 和 #mid .inner 則分別
* 是居中按 x 軸平鋪的液體和居中按 y 軸平鋪的吸管咯
*/
#monitor {
position:fixed;
top:10px;
left:10px;
color:#f0f0f0;
z-index:999;
}
/*
* #monitor 則是左上角的提示文字區(qū)域,具體查看JS注釋部分
*/
#juice {
width:99%;
position:fixed;
top:2000px;
}
#juice .inner {
width:1165px;
background:url(juice.png) repeat-x;
height:2000px;
}
/*
* #juice 在外層設(shè)置為 position:fixed; width:99%;
* position:fixed; 的意思是絕對(duì)定位的元素,相對(duì)于瀏覽器窗口定位
* #juice .inner 在里層設(shè)置為 margin:0 auto; width:1165px;
* 這樣配合好就能做出既是居中又是不隨滾動(dòng)條移動(dòng)的效果
*/
#bottle {
width:99%;
text-align:center;
position:absolute;
top:0;
}
/*
* position:absolute; top:0;
* 這樣做因?yàn)榻^對(duì)定位的東西多了,防止妨礙到瓶體的位置
* text-align:center; 純蛋疼勿在意
*/
#bottle .header {
background:url(bottle_top.png) no-repeat;
width:1175px;
height:2648px;
}
#bottle .content {
background:url(content_bg.png) repeat-y;
height:500px;
width:1186px;
}
#bottle .footer {
background:url(bg_footer.png) no-repeat;
width:1184px;
height:567px;
}
/*
* 分別瓶子三部分,很簡(jiǎn)單的 o(* ̄ 主站蜘蛛池模板: 清丰县| 鄂尔多斯市| 诸城市| 澳门| 四川省| 万山特区| 荃湾区| 苏尼特左旗| 容城县| 泗水县| 三穗县| 琼中| 兴义市| 洛扎县| 绥化市| 松潘县| 宣武区| 乐业县| 全椒县| 乌拉特中旗| 平果县| 东丽区| 阳春市| 宾阳县| 韶关市| 虞城县| 漯河市| 阿克苏市| 岑巩县| 青浦区| 房山区| 贵定县| 招远市| 青冈县| 出国| 土默特右旗| 台南县| 沙湾县| 迁西县| 木里| 湘乡市|