Blogger Information
Blog 26
fans 0
comment 0
visits 16578
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JQ中的CSS
瘦不下来的博客
Original
614 people have browsed it

JQ中CSS()写法:

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>5.设置内联样式css()</title>
	<style type="text/css">
		.box1 {
			width: 300px;
			height: 300px;
			background-color: wheat;

			position: relative;

		}

		.box2 {
			width: 100px;
			height: 100px;
			background-color: coral;

			position: absolute;
			top: 50px;
			left: 100px;
		}
	</style>
</head>
<body>
	<img src="../images/jsy.jpg">

	<div class="box1">
		<div class="box2"></div>
	</div>
</body>
</html>
<script type="text/javascript" src="../js/jquery-3.3.1.js"></script>
<script type="text/javascript">
	//css()方法与attr()方法很相似,也是自带读到与设置特征
	//根据参数数量确定要执行的操作,一个参数是读取,二个参数是设置
	//功能相当于读到或设置当前元素的style属性的值,其实就是内联样式

	//1.设置样式 css(name,value)
	var res = $('img').css('width',200)
	var res = $('img').css('border-radius', '10%')
	var res = $('img').css('box-shadow', '3px 3px 3px #888')

	var res = $('img').css({
		'width': '200',
		'border-radius': '10%',
		'box-shadow': '3px 3px 3px #888'
	})

	//2.读取样式 css(name),返回的都是字符串类型
	var res = $('img').css('box-shadow')
	var res = $('img').css('width')

	//因为返回的是字符串,所以对于宽高等数据,如果要计算,就必须先转为数值型
	var res = parseInt($('img').css('width'), 10) //200
	res += 50
	var res = $('img').css('width',res+'px')

	//可以看出这样的操作是很麻烦的,但是宽高计算又使用的非常频繁
	//所以jquery针对宽高样式有二个专用方法: width()和height()

	//3.width()和height()方法
	//将图片宽高设置为200,单位默认为px
	var res = $('img').width(200)
	var res = $('img').width('200')
	var res = $('img').width('200px')
	var res = $('img').width('200pt')

	//等价于:
	var res = $('img').css('width',200)

	//设置宽高就更简单了,支持运算符的简写
	var res = $('img').width('+=100')
	var res = $('img').width()  //300
	//等价于:
	var res = $('img').css('width','+=50')
	var res = $('img').width()  //250

	//height()高度方法,用法与width()完全一致,请大家自行测试

	// 除了宽高之年,获取元素当前的位置也是经常要用到的操作,jquery也定义了快捷方法

	//4.获取元素的位置:offset(),返回的是一个对象
	var res = $('img').offset()
	//查询距离左边和顶部的偏移量
	var res = $('img').offset().left
	var res = $('img').offset().top
	//可以看到这个操作反映的是元素在普通文档流的位置

	//如果元素采用了绝对定位,那么如何查看它在父级区块中的偏移量呢?
	//5.查看绝对定位元素的偏移量: position()
	var res = $('.box2').position().left
	var res = $('.box2').position().top

	//offset()和position()方法仅适用于页面中的可视元素,并且仅能获取,不能设置
	//类似的还有scrollLeft()返回水平滚动条位置,scrollTop()返回垂直滚动条的位置,大家自行测试



	//控制台查看结果
	console.log(res)
</script>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post