Difference between revisions of "Team:CHINA CD UESTC/hp education"
Line 30: | Line 30: | ||
} | } | ||
+ | /***************gallery***/ | ||
+ | #demo1{ | ||
+ | position: relative; | ||
+ | margin: 50px auto; | ||
+ | width: 700px; | ||
+ | border:1px solid #ccc; | ||
+ | } | ||
+ | #demo1 .img_list{overflow: hidden; position: relative; height: 260px;} | ||
+ | /* 根据图片的张数来设定ul的宽度 */ | ||
+ | .img_list ul{ width: 3500px; position: absolute; height: 260px; left: 0px;} | ||
+ | .img_list li{ float: left; width: 700px;} | ||
+ | .img_list img{ margin: 1px; width: 698px; height: 258px;} | ||
+ | |||
+ | /* 图片对应的按钮样式 */ | ||
+ | .btn_list ul{ position: absolute; right: 20px; bottom: 35px; } | ||
+ | .btn_list li{ float: left; margin-right: 10px; color: #999; border: 1px solid #ccc; } | ||
+ | .btn_list li:hover,.btn_list li.on{ cursor: pointer; border: 1px solid #E204A4;} | ||
+ | .btn_list li img{ width: 30px; height: 15px; display: block;} | ||
+ | /* 左右点击的按钮样式 */ | ||
+ | #demo1 .toLeft,#demo1 .toRight{ | ||
+ | display: none; | ||
+ | position: absolute; | ||
+ | width: 20px; | ||
+ | height: 30px; | ||
+ | top: 110px; | ||
+ | background: url(image/zbbg_24.png) no-repeat 0 -150px; | ||
+ | } | ||
+ | |||
+ | /* 图片对应的说明*/ | ||
+ | .img_intro{ | ||
+ | position: absolute; | ||
+ | bottom: 0; | ||
+ | left: 0; | ||
+ | width: 100%; | ||
+ | height: 25px; | ||
+ | } | ||
+ | .img_intro .img_intro_bg,.img_intro .text{ | ||
+ | position: absolute; | ||
+ | left: 0; | ||
+ | top: 0; | ||
+ | width: 100%; | ||
+ | height: 100%; | ||
+ | } | ||
+ | .img_intro .img_intro_bg{ | ||
+ | background: #000; | ||
+ | opacity: .3; | ||
+ | z-index: 999; | ||
+ | } | ||
+ | .img_intro .text{ | ||
+ | padding: 5px 10px; | ||
+ | z-index: 1000; | ||
+ | color: #999; | ||
+ | } | ||
+ | #demo1 .toLeft{ | ||
+ | left: -40px; | ||
+ | } | ||
+ | #demo1 .toRight{ | ||
+ | right: -40px; | ||
+ | background-position: -50px -150px; | ||
+ | } | ||
+ | |||
+ | /*****************************/ | ||
</style> | </style> | ||
Line 80: | Line 142: | ||
</div> | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | <div id="demo1"> | ||
+ | <div class="img_list"> | ||
+ | <ul> | ||
+ | <li><a href="http://sc.chinaz.com/" target="_blank"><img src="image/gsh_banner1.jpg" alt="寻花故事"></a></li> | ||
+ | <li><a href="http://sc.chinaz.com/" target="_blank"><img src="image/gsh_banner2.jpg" alt="金瓶梅"></a></li> | ||
+ | <li><a href="http://sc.chinaz.com/" target="_blank"><img src="image/gsh_banner3.jpg" alt="视频听书"></a></li> | ||
+ | <li><a href="http://sc.chinaz.com/" target="_blank"><img src="image/gsh_banner4.jpg" alt="盗墓故事"></a></li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | <div class="btn_list"> | ||
+ | <ul> | ||
+ | </ul> | ||
+ | </div> | ||
+ | <div class="img_intro"> | ||
+ | <div class="text"><a href="#" target="_blank"></a></div> | ||
+ | <div class="img_intro_bg"></div> | ||
+ | </div> | ||
+ | <a href="#" id="toLeft" class="link toLeft"></a> | ||
+ | <a href="#" id="toRight" class="link toRight"></a> | ||
</div> | </div> | ||
Line 87: | Line 171: | ||
</div> | </div> | ||
</div> | </div> | ||
+ | <script type="text/javascript"> | ||
+ | var index = 0; | ||
+ | var timer = 0; | ||
+ | var ulist = $('.img_list ul'); | ||
+ | var blist = $('.btn_list ul'); | ||
+ | var list = ulist.find('li'); | ||
+ | var llength = list.length;//li的个数,用来做边缘判断 | ||
+ | var lwidth = $(list[0]).width();//每个li的长度,ul每次移动的距离 | ||
+ | var uwidth = llength * lwidth;//ul的总宽度 | ||
+ | |||
+ | function init(){ | ||
+ | //生成按钮(可以隐藏) | ||
+ | addBtn(list); | ||
+ | //显示隐藏左右点击开关 | ||
+ | $('.link').css('display', 'block'); | ||
+ | $('.link').bind('click', function(event) { | ||
+ | var elm = $(event.target); | ||
+ | doMove(elm.attr('id')); | ||
+ | return false; | ||
+ | }); | ||
+ | |||
+ | //初始化描述 | ||
+ | var text = ulist.find('li').eq(0).find('img').attr('alt'); | ||
+ | var link = ulist.find('li').eq(0).find('a').attr('href'); | ||
+ | $('.img_intro .text a').text(text); | ||
+ | $('.img_intro .text a').attr('href',link); | ||
+ | auto(); | ||
+ | } | ||
+ | |||
+ | function auto(){ | ||
+ | //定时器 | ||
+ | timer = setInterval("doMove('toRight')",3000); | ||
+ | |||
+ | $('.img_list li, .btn_list li').hover(function() { | ||
+ | clearInterval(timer); | ||
+ | }, function() { | ||
+ | timer = setInterval("doMove('toRight')",3000); | ||
+ | }); | ||
+ | } | ||
+ | |||
+ | function changeBtn(i){ | ||
+ | blist.find('li').eq(i).addClass('on').siblings().removeClass('on'); | ||
+ | var text = ulist.find('li').eq(i).find('img').attr('alt'); | ||
+ | var link = ulist.find('li').eq(i).find('a').attr('href'); | ||
+ | $('.img_intro .text a').text(text); | ||
+ | $('.img_intro .text a').attr('href',link); | ||
+ | } | ||
+ | |||
+ | function addBtn (list){ | ||
+ | for (var i = 0; i < list.length; i++) { | ||
+ | var imgsrc = $(list[i]).find('img').attr('src'); | ||
+ | var listCon = '<li><img src="'+imgsrc+'""></li>'; | ||
+ | $(listCon).appendTo(blist); | ||
+ | //隐藏button中的数字 | ||
+ | //list.css('text-indent', '10000px'); | ||
+ | }; | ||
+ | blist.find('li').first().addClass('on'); | ||
+ | blist.find('li').click(function(event) { | ||
+ | var _index = $(this).index(); | ||
+ | doMove(_index); | ||
+ | }); | ||
+ | } | ||
+ | |||
+ | function doMove(direction){ | ||
+ | //向右按钮 | ||
+ | if (direction =="toRight") { | ||
+ | index++; | ||
+ | if ( index< llength) { | ||
+ | uwidth = lwidth *index; | ||
+ | ulist.css('left',-uwidth); | ||
+ | //ulist.animate({left: -uwidth}, 1000); | ||
+ | |||
+ | }else{ | ||
+ | ulist.css('left','0px'); | ||
+ | index = 0; | ||
+ | }; | ||
+ | //向左按钮 | ||
+ | }else if(direction =="toLeft"){ | ||
+ | index--; | ||
+ | if ( index < 0) { | ||
+ | index = llength - 1; | ||
+ | } | ||
+ | uwidth = lwidth *index; | ||
+ | ulist.css('left',-uwidth); | ||
+ | //ulist.animate({left: -uwidth}, "slow"); | ||
+ | //点击数字跳转 | ||
+ | }else{ | ||
+ | index = direction; | ||
+ | uwidth = lwidth *index; | ||
+ | ulist.css('left',-uwidth); | ||
+ | }; | ||
+ | changeBtn(index); | ||
+ | } | ||
+ | init(); | ||
+ | </script> | ||
</body> | </body> | ||
</html> | </html> |
Revision as of 07:33, 21 August 2015
<!DOCTYPE html>
EDUCATION
We conducted interviews with the professor of the Hong Kong University Medicine School. Professor Zhaoyi Hu gave us many precious advice from the perspective of the safety.In the end, our members also get the chance to learn the general processes of sample treatment in medical research as well as separation and preservation methods of some bacteria strains.