符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
不可以,获取id 属性什么只能有js或jq实现,如果做响应式的可以用媒体查询 在不同的分辨率下 更换调整样式
创新互联2013年开创至今,先为樟树等服务建站,樟树等地企业,进行企业商务咨询服务。为樟树企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。
[img]在一个id为bt1的按钮上设置样式,如下:
#bt1{
font-family:微软雅黑 ; !-- 字体 --
width: 60px ; !-- 宽度 --
height:30px ; !-- 高度 --
font-size:14px; !-- 字体大小--
color:gray; !--字体颜色 --
border: 1px solid red; !-- 边框;边框宽度、单线、边框颜色 --
margin-left: 10px; !-- 左边距,相应的还有右边距margin-right, 上margin-top,下 margin-buttom --
background-color:#F1F1F1; !--背景色;十六位颜色表示时前加#符号
transparent是透明--
box-shadow:10px 10px 10px gray; !-- 阴影;x轴偏移(右偏为正),y轴偏移(向下 为正),模糊度,模糊颜色 --
border-radius:10px 10px 10px 10px;!-- 圆角;左上,右上,右下,左下--
cursor:pointer; !-- 鼠标经过时鼠标变成小手 --
}
CSS3 有一个 :target 属性
这是一个简单的DEMO 高级用法可以再百度搜索:
!DOCTYPE html
html
head
style
:target {
border: 2px solid #D4D4D4;
background-color: #e5eecc;
}
/style
/head
body
h1This is a heading/h1
pa href="#news1"Jump to New content 1/a/p
pa href="#news2"Jump to New content 2/a/p
pClick on the links above and the :target selector highlight the current active HTML anchor./p
p id="news1"bNew content 1.../b/p
p id="news2"bNew content 2.../b/p
pbNote:/b Internet Explorer 8 and earlier versions do not support the :target selector./p
/body
/html
div class="box1"/div
style type="text/css"
body{margin:0;padding:0}
.box1{height:300px;width:300px;background:#3695d5;}
.box1{/*过渡效果*/
transition: width 2s;
-moz-transition: width 2s; /* Firefox 4 */
-webkit-transition: width 2s; /* Safari 和 Chrome */
-o-transition: width 2s; /* Opera */
}
.box1:hover{background:#dcdcdc;height:400px;width:400px}/*使用伪类hover,鼠标悬浮选取元素,改变样式*/
/style
创建动画:@keyframes规则。
方式一:from{属性:值;} to{属性:值;}
2
创建动画
方式二:0%{属性:值;} 100%{属性:值;}
0% 是动画的开始,100% 是动画的完成。可以在二者之间加入25%,50%等。
3
将动画绑定到选择器:
在样式中,设置动画属性animation,自定义动画名称和时长。
animation:动画名 时长;
此时就可以完成一个简单的动画了,要进行更多设置还需要其他属性。
4
规定动画开始时的等待时间:
animation-delay:时间;可以为秒、毫秒2s,2ms。
5
播放次数:
animation-iteration-count:次数;
永久播放的值取infinite。
6
动画速度曲线:
animation-timing-function:变化类型;
变化类型有:linear 匀速;ease-in 开始慢;ease-out 结束慢;ease 动画有一个缓慢的开始,然后快,结束慢。