1234567891011121314151617181920212223242526272829303132333435363738394041 |
- var mySwiper = new Swiper ('.swiper-container', {
- loop : true,
- loopedSlides:4,
- autoplay:5500,
- autoplayDisableOnInteraction : false,
- pagination: '.swiper-pagination',
-
-
- slidesPerView :"auto"
- })
- $(function(){
-
- $('.y_newsdata_cont').find('img').each(function(){
- var $that = $(this);
- var _alt = $that.attr('alt');
- if(_alt != 'code'){
- if(_alt != 'zixun'){
- $that.removeAttr('width');
- $that.removeAttr('height');
- $that.css({'display':'block','width':'100%','height':'auto'});
- }
- }
- })
-
- var fun = {
- "error" : function(){
- PublicAction.hint("提交末成功!");
- },
- "success" : function(){
- PublicAction.hint("提交成功!");
- $('body input[type="text"]').val('')
- RemoveDiv();
- }
- }
- PublicAction.AjaxSend({CORID:'apply_submit'},fun);
- })
|