jQuery背景视差插件ios-parallax.js

所属分类:其他,UI-动画效果,背景

 37295  420  查看评论 (3)
分享到微信朋友圈
X
jQuery背景视差插件ios-parallax.js ie兼容10

使用方法

在页面中引入jqueryios-parallax.js文件。

<script src='path/to/jquery.min.js'></script>
<script src='path/to/ios-parallax.js'></script>

 HTML结构

使用一个<div>元素来作为背景图片的容器。

<div id="top-image">
    <div id="content" class="container center-block">
        <!--放置内容-->
    </div>
</div>

CSS样式

为背景图片容器设置如下的CSS样式。

#top-image {
  background: linear-gradient(
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)
  ), url('../images/bg.jpg') no-repeat fixed;
  position:fixed ;
  top:0;
  width:100%;
  z-index:0;
  height:100%;
}

初始化插件

在页面DOM元素加载完毕之后,可以通过下面的方法来初始化该背景图片视觉差插件。

$('#myContainer').iosParallax({
 
  // How fast the background moves
  movementFactor: 50,
 
  // How much to dampen the movement (higher is slower)
  dampenFactor: 36
   
});
相关插件-动画效果,背景

3Dtransfrom和animation的结合

一个学习css3transfm3D和animation的入门效果
  动画效果
 29813  464

仿机场的文字切换特效

这是一款模仿机场文字切换的简单的css文字动画效果,一共有六种模式。
  动画效果
 31882  413

jQuery直播点击飘心效果,点赞桃心飘动效果

直播点击飘心效果,点赞桃心飘动效果,canvas画出桃心飘动效果
  动画效果
 46212  394

导航水波纹点击效果外加滑动效果

导航水波纹点击效果外加滑动效果
  动画效果
 35059  422

讨论这个项目(3)回答他人问题或分享插件使用方法奖励jQ币 评论用户自律公约

    gzwebsj 0
    2017/7/14 14:19:54
    不错的源码,多谢分享!
        ELMO_LU0
        2017/7/18 13:40:56

        恩是不错

        Content、0
        2017/11/29 16:27:30

        不错

    回复
😃
  • 😀
  • 😉
  • 😥
  • 😵
  • 😫
  • 😘
  • 😡
  • 👍
  • 🌹
  • 👏
  • 🍺
  • 🍉
  • 🌙
  • 💖
  • 💔
😃
  • 😀
  • 😉
  • 😥
  • 😵
  • 😫
  • 😘
  • 😡
  • 👍
  • 🌹
  • 👏
  • 🍺
  • 🍉
  • 🌙
  • 💖
  • 💔
取消回复