怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
鼠标移动UI跟随晃动的图标jquery
准备好需要用到的图标。
新建html文档。
书写hmtl代码。
center>
div id="page-wrap">
div id="header" >
h1 class="rounded-corners">漂亮的jquery UI 跟随鼠标晃动的图标动画/h1>
/div>
div id="content">
div id="parallax">
img src="images/grass.png" style="width:1200px; height:250px;"/>
img src="images/frog2.png" style="width:500px; height:250px;"/>
img src="images/butterflies3.png" style="width:1200px; height:300px;"/>
/div>
/div>
/div>
/center>
书写css代码。
body { font-family: arial; font-size: 14px; background: url(../images/bg.jpg) repeat; }
#page-wrap { background-color: #B8E3F5; width: 950px; height: 365px; margin-left: auto; margin-right: auto; border: 1px solid #AFC2F0; padding: 3px; }
#header { height: 85px; width: 950px; margin-top: 20px; text-align: center; }
#content { background-color: #B8E3F5; width: 950px; text-align: left; }
h1 { padding: 20px 10px 20px 10px; background-color: gray; color: white; margin: 0; text-shadow: #9E9B9B 2px 2px 2px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E3E1E1', endColorstr='#CCCACA');
background: -gradient(linear, left top, left bottom, from(#E3E1E1), to(#CCCACA)); background: -moz-linear-gradient(top, #E3E1E1, #CCCACA); }
.large { font-size: 22px; }
.orange { color: orange; }
.italic { font-style: italic }
.textmiddle { vertical-align: middle; }
.padout { padding-left: 25px; padding-right: 25px; }
.rounded-corners { -moz-border-radius: 40px; -border-radius: 40px; -khtml-border-radius: 40px; border-radius: 40px; }
.rounded-corners-top { -moz-border-top-radius: 40px; -border-radius: 40px; -khtml-border-radius: 40px; border-radius: 40px; }
.scrolldown { padding-left: 20px; color: #EDECE8; font-size: 40px; font-weight: bold; vertical-align: middle; text-shadow: #6374AB 2px 2px 2px; }
#page-content { padding: 20px; }
#parallax-header { height: 200px; background-color: gray; }
#parallax { position: relative; overflow: hidden; width: 950px; height: 250px; background-image: url('../images/background.jpg'); }
书写并添加js代码。
script src="js/jquery-1.2.6.min.js">/script>
script src="js/jquery.jparallax.0.9.1.js" >/script>
script>
jQuery(document).ready(function($) {
jQuery('#parallax').jparallax();
});
/script>
代码整体结构。
查看效果。
以上方法由办公区教程网编辑摘抄自百度经验可供大家参考!
标签: 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