Skip to content

一个Javascript库, 允许您创建一个类似通讯录首字母滑动的效果

Notifications You must be signed in to change notification settings

iMeng-Li/iScrollContactJS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iScrollContactJS

一个Javascript库, 允许您创建一个类似通讯录首字母滑动的效果

![iScrollContactJS] [iScrollContactJS]:http://www.bluemughtml5.com/images/bkg_block2.png "通讯录首字母滑动的效果"

我的博客

用法

内容页面的目标元素(elements:#ID)调用iScroll( )方法
它创造了必要的HTML元素在内容页面
右边操作元素(elements:#ID)调用iScrollContact( )方法
使用HTML 5新标签和CSS 3最新标准

引用库

require.config({
  baseUrl: "js/",
  paths: {
    "jquery": "libs/jquery203",
    "iScroll": "libs/iScroll425",
    "iScrollContact": "iScrollContact"
  },
  /*iScrollContact.js符合AMD规范,才可以调用*/
  shim: {
    'iScroll': {
      exports: 'iScroll'
    },
    'iScrollContact': {
      deps: ['iScroll'],
      exports: 'iScrollContact'
    }
  }
});

HTML

<!-- dom elements -->
<ul id="abc-tab3"></ul>

<div id="roll-tips-tab3">
<p id="roll-tips-tab3-p"></p>
</div>

<div id="wrapper-tab3"></div>

CSS

.sticker {
width: 180px;
height: 180px;
}

// add image
.example-1 .sticker-img {
background-image: url(heroes-2.png);
}

// add color
.example-2 .sticker-img {
background-color: #ff4a85;
}

// change shadow opacity
.example-2 .sticker-shadow {
opacity: 0.6;
}

使用

window.scrollTo(0,0);

//完全消除myscroll及其占用的内存空间
// myscroll.destroy()
myScrollTab3 = new iScroll('wrapper-tab3');
myScrollContactTab3 = new iScroll_Contact_Fn('scroller-tab3');
new abc('abc-tab3',myScrollTab3,myScrollContactTab3,'roll-tips-tab3');

About

一个Javascript库, 允许您创建一个类似通讯录首字母滑动的效果

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published