用JQuery讓背景自動適應視窗 - 部落格

Table of Contents

常常會遇到背景圖在A電腦看起來大小位置剛好,在B電腦卻太小會看到底色

C電腦則是位置不對

如果想要blog的背景圖片在不同電腦不同解析度下看起來都一樣

可以用 JQuery 的一個 plugin:Backstretch

JQuery http://jquery.com/

Backstretch http://srobbin.com/blog/jquery-plugins/jquery-backstretch/

中文blog說明 http://blog.chainz.me/?p=78

<script type="text/javascript"
src="http://xxx.jquery.min.js"></script>
<script type="text/javascript" src="http://xxx.jquery.backstretch.min.js"></script>
<script type="text/javascript">
$.backstretch("img/back1.jpg",{speed:1000});
</script>

以上,花了一些時間從Google找出來的

這方面很新手,有問題請指正

--
Nobody wants to see the big picture.

Life is too complicated.

--

All Comments

Elizabeth avatarElizabeth2011-12-22
用CSS media即可