怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
jQuery css3向右旋转90度幻灯效果
准备好需要用到的图标。
新建html文档。
书写hmtl代码。
div id="slideShowContainer">
div id="slideShow">
ul>
li>img src="images/photos/1.jpg" width="100%" alt="Fish" />/li>
li>img src="images/photos/2.jpg" width="100%" alt="Ancient" />/li>
li>img src="images/photos/3.jpg" width="100%" alt="Industry" />/li>
li>img src="images/photos/4.jpg" width="100%" alt="Rain" />/li>
/ul>
/div>
a id="previousLink" href="#">»/a> a id="nextLink" href="#">«/a> /div>
书写css代码。
* { margin: 0; padding: 0; }
html { background: url('../images/page_bg_tile.jpg') #202027; }
body { color: #999; background-image: url('../images/contour.png'), url('../images/page_bg.jpg'); background-repeat: no-repeat, no-repeat; background-position: center 117px, center -200px; font: 15px Calibri, Arial, sans-serif; border: 1px solid transparent; }
#slideShowContainer { width: 510px; height: 510px; position: relative; margin: 20px auto 50px; }
#slideShow { position: absolute; height: 490px; width: 490px; background-color: #fff; margin: 10px 0 0 10px; z-index: 100; -moz-box-shadow: 0 0 10px #111; -box-shadow: 0 0 10px #111; box-shadow: 0 0 10px #111; }
#slideShow ul { position: absolute; top: 15px; right: 15px; bottom: 15px; left: 15px; list-style: none; overflow: hidden; }
#slideShow li { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
#slideShowContainer > a { border: none; text-decoration: none; text-indent: -99999px; overflow: hidden; width: 36px; height: 37px; background: url('../images/arrows.png') no-repeat; position: absolute; top: 50%; margin-top: -21px; }
#previousLink { left: -38px; }
#previousLink:hover { background-position: bottom left; }
a#nextLink { right: -38px; background-position: top right; }
#nextLink:hover { background-position: bottom right; }
.note { margin-bottom: 40px; text-align: center; }
.credit { font-size: 12px; }
.credit a { color: #bbb !important; }
a, a:visited { text-decoration: underline; outline: none; color: #97CAE6; }
a:hover { text-decoration: none; }
代码整体结构。
查看效果。
以上方法由办公区教程网编辑摘抄自百度经验可供大家参考!
标签: JQUERY
相关文章
怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
jQuery MiniUI 快速入门,前段时间由于工作的原因接触到MiiUI。感觉MiiUI很强大,使用起来也很舒服。下面我就带领大家快速的使用MiiUI。MiiUI-专业WeUI控件库它能缩短开发时......
2023-03-17 330 JQUERY
怎么使用JQuery Mobile开发移动网站,现在越来越多的人用网站来做手机a,这样的好处是,可以做一个网站,基本上可以做到多个平台adroid,io,w,都可以使用。这里使用JQueryMoile......
2023-03-17 374 JQUERY