- 1、本文档共12页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
web开发日志css定义与JS
项目1
类的应用
style
div{width:60px;height:60px;background-color: #7FFF00;border-radius: 50%; float:left; margin-left: 10px;}
/style
meta charset=UTF-8
title/title
/head
body
div/div//div显示出来前面的不能加.
div/div
div/div
div class=div/div//类定义前面加.
html
head
script src=jquery.js/script
style
.box{width:372px; height:494px ;overflow: hidden;position: relative;top: 60px;left:50%}//box是盒子只能放一张图片 overflow 多余超出隐藏 position 相对父级移动的位置 图片的位置居中
.click span{ float:left;margin-left: 10px;margin-right: 10px; width:10px;height: 10px;background-color: red;border-radius: 50%;overflow: hidden;position: relative;top: 60px;left:50%;}//span是点.click span定义了一个类 也是一个框架框起来作用 margin-left right 是相对于页面的上下左右的变化彼此之间的距离
/style
meta charset=UTF-8
title/title
/head
body
div class=click span
span /span
span/span
span/span
span/span
span/span//div 和span 加上浮动都是一样的标签
/div //一个父级框起来可以一起定义效果
br /
div class=box
img src=img/p_1.png/
img src=img/p_2.png /
img src=img/p_3.png /
img src=img/p_4.png /
img src=img/p_5.png /
/div
script
$(img).hide()//一开始没有图像
$(span:eq(0)).click(
function(){
$(img:eq(0)).show()
$(img:eq(0)).siblings().hide()
$(this).css({backgroundColor:yellow})
$(this).siblings().css({backgroundColor:red})//this相对应的是最外面()里的span
}
)
$(span:eq(1)).click(
function(){
$(img:eq(1)).show()
$(img:eq(1)).siblings().hide()
$(this).css({backgroundColor:yellow})
$(this).siblings().css({backgroundColor:red})
}
)
$(span:eq(2)).click(
function(){
$(img:eq(2)).show()
$(img:eq(2)).siblings().hide()
$(this).css({backgroundColor:yellow})
$(this).siblings().css({backgroundColor:red})
}
)
$(span:eq(3)).click(
function(){
$(img:eq(3)).show()
$(img:eq(3)).siblings().hide()
$(this).css({backgroundColor:yellow})
$(this).siblings().css({backgroundColor:red})
}
)
$(span:eq(4)).click(
function(){
$(img:eq(4)).show
文档评论(0)