|
@@ -0,0 +1,75 @@
|
|
|
|
+<html>
|
|
|
|
+<head>
|
|
|
|
+<title>企明星-剑鱼</title>
|
|
|
|
+<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
|
|
+<link href="/wxswordfish/style.css" rel="stylesheet">
|
|
|
|
+<script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
|
|
|
|
+<script src="/js/jquery.js"></script>
|
|
|
|
+<script src="/wxswordfish/share.js"></script>
|
|
|
|
+<script>
|
|
|
|
+ initShare({{.T.signature}},{{.T.shareid}});
|
|
|
|
+</script>
|
|
|
|
+<style type="text/css">
|
|
|
|
+body{
|
|
|
|
+ margin: 0px;
|
|
|
|
+ font-family: tahoma, arial, 'Hiragino Sans GB', 'Microsoft YaHei', 宋体, sans-serif;
|
|
|
|
+ -webkit-tap-highlight-color: transparent;
|
|
|
|
+}
|
|
|
|
+ul{
|
|
|
|
+ list-style: none;
|
|
|
|
+ padding: 0px;
|
|
|
|
+ margin: 0px;
|
|
|
|
+}
|
|
|
|
+img{
|
|
|
|
+ vertical-align: sub;
|
|
|
|
+}
|
|
|
|
+.brand a{
|
|
|
|
+ display: block;
|
|
|
|
+ float: left;
|
|
|
|
+ margin: 20px;
|
|
|
|
+ width: 180px;
|
|
|
|
+ height: 240px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ position: relative;
|
|
|
|
+}
|
|
|
|
+.brand img{
|
|
|
|
+ width: 180px;
|
|
|
|
+ height: 240px;
|
|
|
|
+}
|
|
|
|
+.brand .info{
|
|
|
|
+ display: none;
|
|
|
|
+ background-color: #f0f0f0;
|
|
|
|
+ color: #369242;
|
|
|
|
+ line-height:240px;
|
|
|
|
+}
|
|
|
|
+.vertical .info{
|
|
|
|
+ width: 0;
|
|
|
|
+ height: 240px;
|
|
|
|
+ margin: 0 auto;
|
|
|
|
+}
|
|
|
|
+</style>
|
|
|
|
+</head>
|
|
|
|
+<body>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+<script type="text/javascript">
|
|
|
|
+var turn = function(target,time,opts){
|
|
|
|
+ target.find('a').hover(function(){
|
|
|
|
+ $(this).find('img').stop().animate(opts[0],time,function(){
|
|
|
|
+ $(this).hide().next().show();
|
|
|
|
+ $(this).next().animate(opts[1],time);
|
|
|
|
+ });
|
|
|
|
+ },function(){
|
|
|
|
+ $(this).find('.info').animate(opts[0],time,function(){
|
|
|
|
+ $(this).hide().prev().show();
|
|
|
|
+ $(this).prev().animate(opts[1],time);
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+}
|
|
|
|
+var verticalOpts = [{'width':0},{'width':'180px'}];
|
|
|
|
+turn($('#vertical'),100,verticalOpts);
|
|
|
|
+</script>
|
|
|
|
+</body>
|
|
|
|
+</html>
|