$(window).width()指的是瀏覽器的高度,改變?yōu)g覽器的高度,$(window).width()的值就會(huì)改變。
成都創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的玉環(huán)網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
window.screen.width指的是你手機(jī)或電腦屏幕的高度,無論你怎么改變?yōu)g覽器高度他都是不變的,和你的屏幕分辨率相關(guān)。
兩者的高度是不一樣的,使用js中的alert()方法打印這兩個(gè)高度就會(huì)發(fā)現(xiàn)它們之間的差別。
擴(kuò)展資料:
jQuery
jQuery 是繼prototype 之后又一個(gè)優(yōu)秀的輕量級(jí)JavaScript 框架。其宗旨是———“Write Less, Do More”,寫更少的代碼,做更多的事情。 它是一個(gè)快速和簡潔的JavaScript 庫,可以簡化HTML 文檔元素的遍歷,事件處理,動(dòng)畫和Ajax 交互以實(shí)現(xiàn)快速Web 開發(fā),它被設(shè)計(jì)用來改變編寫JavaScript 腳本的方式。
jQuery 最有特色的語法特點(diǎn)就是與CSS 語法相似的選擇器,并且它支持CSS1 到CSS3 的幾乎所有選擇器,并兼容所有主流瀏覽器,這為快速訪問DOM 提供了方便。
參考資料來源:百度百科-jQuery
html
head
meta?http-equiv="Content-Type"?content="text/html;?charset=gb2312"?/
style?type="text/css"
#ad1,#ad2{
-webkit-transition:?all?.5s?ease-out;
-moz-transition:?all?.5s?ease-out;
-o-transition:?all?.5s?ease-out;
transition:?all?.5s?ease-out;
POSITION:absolute;
TOP:120px;
width:100px;
height:200px;
border:1px?solid?red;
}
#close1,#close2{
font-size:10px;
background:gray;
float:right;
}
#close1:hover,#close2:hover{cursor:pointer}
/style
/head
body
div?id="mm"?style="height:2000px;background:#f5f5f5;width:500px"
/div
DIV?id="ad1"?style='left:2px;'
div?id="close1"關(guān)閉/div
/div
DIV?id="ad2"?style='right:2px;'
div?id="close2"關(guān)閉/div
/div
script?type="text/javascript"?src="js/jquery.js"?/script
script?language="JavaScript"?type="text/javascript"
$("#close1").click(function(){?//關(guān)閉廣告
$(this).parent().remove();
})
$("#close2").click(function(){
$(this).parent().remove();
})
document.onscroll=function(){?//滑動(dòng)保持廣告位置
$("#ad1").style.top=document.body.scrollTop+120+'px';
$("#ad2").style.top=document.body.scrollTop+120+'px';
};
/script
/body
/html
--------------------javascript ----------------------
script type="text/javascript"
$(document).ready(function(){
var widthToogle = {"widthmax":["widthmin","切換到寬屏"],"widthmin":["widthmax","切換到窄屏"]};
$("a[id^='width']").click(function(){
var arr = widthToogle[this.id];
this.id = arr[0];
this.innerText = arr[1];
})
});
/script
----------------------- html ------------------------------
a href="javascript:void(0)" id="widthmax" 切換到窄屏/a
mat2gray(數(shù)據(jù)矩陣轉(zhuǎn)灰度圖像)、rgb2gray(彩色轉(zhuǎn)灰度)、im2bw(將真彩色、索引色、灰度圖轉(zhuǎn)換成二值圖)
I=mat2gray(A,[amin amax]) %其中[amin amax] 是[0,1]間的任意值
I=mat2gray(A) %數(shù)據(jù)矩陣轉(zhuǎn)換為可視化灰度圖像!