<a href="#one">按钮1</a> <a href="#two">按钮2</a> <a href='#three'>按钮3</a> <main> <div id="one">所有主流浏览器均支持 :target 选择器,除了 IE8 及更早的版本.</div> <div id="two">URL 带…
点击单个cell高度变化的动画效果 效果 说明 1. 点击单个cell的时候,其展开与缩放动画实现起来是很麻烦的,做过相关需求的朋友一定知道其中的坑 2. 本例子只是提供了一个解决方案,为了简化操作,将cell高度封装到了Model当中 源码 https://github.com/YouXianMing/TableViewTapAnimation // // Model.h // TableViewTapAnimation // // Created by YouXianMing on 15/9…
http://files.cnblogs.com/files/tanlingdangan/top_right.rar.gz 右上角鼠标滑过展开收缩动画效果js代码的演示页面http://www.51xuediannao.com/js/texiao/top_right/…
----------------------收藏备用  ------------------------------- 代码下载:http://download.csdn.net/detail/qq263229365/5622693 今天从网上看到一个这样的效果,感觉很有创意,自己也搜集了一些资料,仿照着实现了一下. 下面就直接上源码: 首先看一下布局文件: [html]  view plain copy   <?xml version="1.0" encoding="…
一.需求的诞生 在我们的网页或者web应用中,想要对列表中的元素进行位置调整(或者说排序)是一个常见的需求.实现方式大概就以下两种,一种是带有类似“上移”.“下移”的按钮,点击可与相邻元素交换位置,另一种便是通过拖拽进行排序.搜索“jquery拖拽排序插件”,你会看到相关插件层出不穷.在HTML5拖拽API完善再加上移动设备横行的今天,后者似乎更受青睐,因为它有更简洁的操作,你看看,拖来拖去就可以调整顺序,多炫啊. 但是!为什么要说但是呢,因为这种拖拽操作也有它的弊端.首先是功能不明显,用户进来…
//按钮出现时的动画效果 + (void)buttonAnimation:(UIButton *)sender { CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath:@"transform"]; CATransform3D scale1 = CATransform3DMakeScale(0.5, 0.5, 1); CATransform3D scale2 = CATransform3DM…
1. html <div class="menu-wrap"> <input type="checkbox" class="toggler"> <div class="hamburger"><div></div></div> <div class="menu"> <div> <ul> <li&g…
1.  html结构 <div class="menu-wrap"> <input type="checkbox" class="toggler"> <div class="hamburger"><div></div></div> <div class="menu"> <div> <ul> <l…
一般使用场景: 登录的错误验证 或者 强提醒 template 部分 <img id="barcode" :class="{ shaking: toShake}" @click="handleShake" /> javascript 部分 export default { data(){ return{ toShake: false } }, methods:{ handleShake() { this.toShake= true /…
点击cell动态修改高度动画 效果 源码 https://github.com/YouXianMing/Animations // // TapCellAnimationController.m // Animations // // Created by YouXianMing on 16/4/8. // Copyright © 2016年 YouXianMing. All rights reserved. // #import "TapCellAnimationController.h&qu…