flux实现图片幻灯片转场切换三维5种效果代码
代码语言:html
所属分类:幻灯片
代码描述:flux实现图片幻灯片转场切换三维5种效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <style> html { height: 100%; } .container { margin: 20px auto; width: 760px; } h1, h2 { text-align: center; text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.2); } h1 { font-size: 3em; } h2 { margin-top: -1.5em; color: #ba3304; } ul.transitions { margin: 40px -10px; padding: 0; overflow: auto; } ul.transitions li { list-style: none; width: 15%; float: left; padding: 0 10px 1em; } ul.transitions li button { font-family: 'Antic Slab', arial, sans-serif; display: block; width: 100%; padding: 1em; text-align: center; font-size: 1.2em; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; -ms-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 3px 4px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 3px 4px rgba(0, 0, 0, 0.2); -o-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 3px 4px rgba(0, 0, 0, 0.2); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 3px 4px rgba(0, 0, 0, 0.2); border: 1px solid rgba(0, 0, 0, 0.3); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #999999), color-stop(100%, #666666)); background: -webkit-linear-gradient(#999999, #666666); backgr.........完整代码请登录后点击上方下载按钮下载查看
网友评论0