jQuery网站logo动态展示特效代码

版权:原创 更新时间:1年以上
[该文章底部包含文件资源,可根据自己情况,决定是否下载资源使用,时间>金钱,如有需要,立即查看资源]

以下是 jQuery网站logo动态展示特效代码 的示例演示效果:

当前平台(PC电脑)
  • 平台:

部分效果截图:

jQuery网站logo动态展示特效代码

HTML代码(index.html):

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>jQuery网站logo动态展示</title>
<link rel='stylesheet' id='at_logocarousel_style-css'  href='css/zzsc.css' type='text/css' media='all' />
<script type='text/javascript' src='js/jquery.js'></script>
</head>
<body>
<div id="main-container" class="twelve animated BeanFadeIn"> 
<div class="row">
<div class="seven columns clearfix" role="main">
<section id="post-291" class="post-291 page type-page status-publish hentry">	
<div class="entry-content">
<div class="at_logo_carousel" id="at_logo_carousel_110" 
data-carousel-id="110"  
data-speed="60" 
data-speed-random="15" 
data-rows="7" 
data-cols="4" 
data-alignment="vertical" 
data-force-fullwidth="0" 
data-background="#ffcd6c" 
data-vertical-direction="down" 
data-horizontal-direction="right" 
data-height="300" 
data-topbottom-padding="15" 
data-leftright-padding="10" 
">
<ul>

<li><img src="images/redhat_w.png" alt="" /></li>

<li><img src="images/twitter_w.png" alt="" /></li>

<li><img src="images/wordpress_w.png" alt="" /></li>

<li><img src="images/champions_w.png" alt="" /></li>

<li><img src="images/cocacola_w.png" alt="" /></li>

<li><img src="images/facebook_w.png" alt="" /></li>

<li><img src="images/pixar_w.png" alt="" /></li>

</ul>
</div>
</div>
</section>
</div>	
</div>
</div>
<script type='text/javascript' src='js/jquery.isotope.min.js'></script>
<script type='text/javascript' src='js/jquery.waitforimages.js'></script>
<script type='text/javascript' src='js/jquery.at.logocarousel.min.js'></script>
</body>
</html>





JS代码(jquery.at.logocarousel.min.js):

/*********************************************************** This file belongs to Logo Carousel plugin and it is copyrighted to AlchemyThemes.com Version:0.1 Last update:23.09.2013 Author:AlchemyThemes ***********************************************************/
(function($){
	jQuery.noConflict();
	/////////////////////////////////////////////// at_shuffle fn made to shuffle the logos ///////////////////////////////////////////////$.fn.at_shuffle = function(){
	var allElems = this.get(),getRandom = function(max){
	return Math.floor(Math.random() * max);
}
,shuffled = $.map(allElems,function(){
	var random = getRandom(allElems.length),randEl = $(allElems[random]).clone(true)[0];
	allElems.splice(random,1);
	return randEl;
}
);
	this.each(function(i){
	$(this).replaceWith($(shuffled[i]));
}
);
	return $(shuffled);
}
;
	at_logoCarouselObj = function (t,opt){
	// Default optionsthis.defaults ={
	rows:4,cols:5,height:300,forceFullwidth:false,alignment:'horizontal',bgColor:'transparent',tbPadding:15,lrPadding:30,speed:60,speedRandom:15,verticalDir:'up',horizontalDir:'left',hoverStop:false}
;
	// Optionsthis.options = $.extend(true,this.defaults,opt);
	// Private use variablesthis._source= t;
	this._itemsNum= 0;
	this._displayW= 0;
	this._itemsW= 0;
	this._itemsH= 0;
	this._arrowClicked= false;
	// Initializationif (this._checkDataParams()){
	if (this._setGeneralStyles()){
	if (this._checkForceFullwidth()){
	if (this._cloneLogos()){
	//if (this._createPlaceholder()){
	this._setEvents();
	this._startAnimations(this.options.speed);
	//}
}
}
}
}
// End of initialization}
;
	$.extend(at_logoCarouselObj.prototype,{
	version:"0.1",_setEvents:function(){
	var _t = this;
	// Call to action dismiss_t._source.find('.at_logo_carousel_dismiss_button').click(function(event){
	event.preventDefault();
	_t._source.find('.at_logo_carousel_calltoaction_container').fadeOut();
}
);
	// Hoverif (_t.options.hoverStop){
	_t._source.hover(function(){
	_t._source.find('>ul').each(function(i){
	$(this).stop(true,false).clearQueue();
}
);
}
,function(){
	_t._restartAnimationFromHover();
}
);
}
// Resize//$(window).bind("debouncedresize",function(){
	$(window).bind('resize',function(){
	_t._source.find('>ul').each(function(i){
	$(this).stop(true,false).clearQueue();
}
);
	_t._startAnimations(_t.options.speed);
	_t._source.hover();
}
);
}
,/************************************************ ** _setGeneralStyles ************************************************ ** Sets the general styling options *************************************************/
_setGeneralStyles:function(){
	var _t = this;
	// General styling options_t._source.css({
	'background-color':_t.options.bgColor}
);
	if (_t.options.alignment == 'horizontal'){
	/////////////////////////////////////// Options for HORIZONTAL carousel ///////////////////////////////////////_t._source.addClass('at_horizontal');
	_t._source.find('>ul li').css({
	'margin':_t.options.tbPadding+'px '+_t.options.lrPadding+'px'}
);
	_t._source.find('>ul li').each(function(){
	$(this).width($(this).width());
}
);
}
else{
	///////////////////////////////////// Options for VERTICAL carousel /////////////////////////////////////_t._source.addClass('at_vertical');
	_t._source.css({
	'height':_t.options.height}
);
	_t._source.find('>ul li').css({
	'padding':_t.options.tbPadding+'px '+_t.options.lrPadding+'px'}
);
}
// Return true to continue startupreturn true;
}
,/************************************************ ** _checkForceFullwidth ************************************************ ** Checks if the forceFullwidth option is true ** and tries to position the carousel full-width *************************************************/
_checkForceFullwidth:function(){
	var _t = this;
	if (_t.options.forceFullwidth == true){
	var _left = _t._source.offset().left;
	var _leftPos = _t._source.position().left;
	var _right = _t._source.offset().right;
	var _rightPos = _t._source.position().right;
	var _width = _t._source.width();
	var _widthW = $(document).width();
	if (_left != _leftPos){
	_t._source.css({
	'margin-left':'-'+_left+'px','width':_widthW+'px'}
);
}
else{
	_t._source.css({
	'position':'absolute','left':'0px','width':'100%'}
);
}
}
// Return true to continue startupreturn true;
}
,/************************************************ ** _createPlaceholder ************************************************ ** Creates a placeholder element so all webpage ** content moves down when the 'forceFullwidth' ** makes carousel position:Absolute *************************************************/
_createPlaceholder:function(){
	var _t = this;
	var _addExtraHeight = 0;
	if (_t.options.alignment == 'horizontal'){
	_addExtraHeight = 30;
}
var _id = _t._source.attr('data-carousel-id');
	if (_t.options.forceFullwidth == true){
	jQuery('<div class="at_logo_carousel_placeholder" id="at_logo_carousel_placeholder_'+_id+'"></div>').css({
	'height':_t._source.height()+_addExtraHeight}
).insertAfter(_t._source);
}
return true;
}
,/************************************************ ** _checkDataParams ************************************************ ** Check for data-parameters and replace those ** in the options object *************************************************/
_checkDataParams:function(){
	if (this._source.attr('data-hover-stop')){
	this.options.hoverStop= this._source.attr('data-hover-stop');
}
if (this._source.attr('data-rows')){
	this.options.rows= this._source.attr('data-rows');
}
if (this._source.attr('data-cols')){
	this.options.cols= this._source.attr('data-cols');
}
if (this._source.attr('data-alignment')){
	this.options.alignment= this._source.attr('data-alignment');
}
if (this._source.attr('data-height')){
	this.options.height= this._source.attr('data-height');
}
if (this._source.attr('data-force-fullwidth')){
	this.options.forceFullwidth= this._source.attr('data-force-fullwidth');
}
if (this._source.attr('data-background')){
	this.options.bgColor= this._source.attr('data-background');
}
if (this._source.attr('data-topbottom-padding')){
	this.options.tbPadding= this._source.attr('data-topbottom-padding');
}
if (this._source.attr('data-leftright-padding')){
	this.options.lrPadding= this._source.attr('data-leftright-padding');
}
if (this._source.attr('data-speed')){
	this.options.speed= this._source.attr('data-speed');
}
if (this._source.attr('data-speed-random')){
	this.options.speedRandom= this._source.attr('data-speed-random');
}
if (this._source.attr('data-vertical-direction')){
	this.options.verticalDir= this._source.attr('data-vertical-direction');
}
if (this._source.attr('data-horizontal-direction')){
	this.options.horizontalDir= this._source.attr('data-horizontal-direction');
}
// Return true to continue startupreturn true;
}
,/************************************************ ** _cloneLogos ************************************************ ** Clones the logos as many times as needed *************************************************/
_cloneLogos:function(){
	var _t = this;
	var _container = this._source;
	//var _list = _container.find('> ul');
	//var _listItems = _list.html();
	if (_t.options.alignment == 'horizontal'){
	/////////////////////////////////////// Options for HORIZONTAL carousel ///////////////////////////////////////// Duplicate the list as many times as rows neededvar _new_list = _container.find('> ul').eq(0);
	for (var i = 1;
	i < _t.options.rows;
	i++){
	_new_list.clone().appendTo(_container);
	_container.find('> ul').last().find('li').at_shuffle().at_shuffle();
}
// Now shuffle each list,and then repeat the logos_container.find('> ul').each(function(i){
	var _list = $(this);
	var _listItems = _list.html();
	// Repeat logos until width is fulldo{
	_list.append(_listItems);
}
while (_list.width() > _container.width());
	// And now duplicate it because we need to be able to fill 2 screens with logos (for the animation)_list.append(_list.html());
	// resize rows to fit all logosvar _totalWidth = 0;
	_list.find('li').each(function(){
	var _li = jQuery(this);
	//jQuery(this).width(jQuery(this).width());
	_totalWidth += (jQuery(this).width())+(_t.options.lrPadding*2);
}
);
	_list.width(_totalWidth);
}
);
	_t._source.css({
	'height':_t._source.height()}
);
}
else{
	///////////////////////////////////// Options for VERTICAL carousel /////////////////////////////////////// Duplicate the list as many times as rows neededvar _new_list = _container.find('> ul').eq(0);
	for (var i = 1;
	i < _t.options.cols;
	i++){
	_new_list.clone().appendTo(_container);
	_container.find('> ul').last().find('li').at_shuffle().at_shuffle();
}
// Now shuffle each list,and then repeat the logos_container.find('> ul').each(function(i){
	var _list = $(this);
	var _listItems = _list.html();
	// Repeat logos until height is fulldo{
	_list.append(_listItems);
}
while (_list.height() <= _container.height());
	// And now duplicate it because we need to be able to fill 2 screens with logos (for the animation)_list.append(_list.html());
	// Give them a width so they can all be shown on screen_container.find('> ul').css({
	'width':(100/_t.options.cols)+'%','padding':'0px 0px'}
);
}
);
}
return true;
}
,/************************************************ ** _startAnimations ************************************************ ** Starts the animations for all the rows *************************************************/
_startAnimations:function(_time){
	var t = this;
	var _container = this._source;
	_container.find('>ul').each(function(i){
	var random_offset = Math.floor(Math.random() * ((t.options.speedRandom*1000) - 100 + 1)) + 100;
	var thislinerandom = (_time*1000)+random_offset;
	$(this).attr('data-speed-timer',thislinerandom);
	if (t.options.alignment == 'horizontal'){
	/////////////////////////////////////// Options for HORIZONTAL carousel ///////////////////////////////////////if (t.options.horizontalDir == 'left'){
	//////////// LEFT ////////////jQuery(this).animate({
	//'margin-left':-(jQuery(this).width()-jQuery(window).width())'margin-left':-(jQuery(this).width()-_container.width())}
,thislinerandom,"linear",function(){
	t._restartAnimation(jQuery(this),thislinerandom);
}
);
}
else{
	///////////// RIGHT /////////////jQuery(this).css({
	//'margin-left':-(jQuery(this).width()-jQuery(window).width())'margin-left':-(jQuery(this).width()-_container.width())}
).animate({
	'margin-left':0}
,thislinerandom,"linear",function(){
	t._restartAnimation(jQuery(this),thislinerandom);
}
);
}
}
else{
	///////////////////////////////////// Options for VERTICAL carousel /////////////////////////////////////if (t.options.verticalDir == 'up'){
	////////// UP //////////jQuery(this).animate({
	'margin-top':-(jQuery(this).height()-t._source.height())}
,thislinerandom,"linear",function(){
	t._restartAnimation(jQuery(this),thislinerandom);
}
);
}
else{
	//////////// DOWN ////////////jQuery(this).css({
	'margin-top':-(jQuery(this).height()-t._source.height())}
).animate({
	'margin-top':0}
,thislinerandom,"linear",function(){
	t._restartAnimation(jQuery(this),thislinerandom);
}
);
}
}
}
);
}
,_restartAnimationFromHover:function(){
	var t = this;
	var _container = this._source;
	_container.find('>ul').each(function(i){
	var thislinerandom = $(this).attr('data-speed-timer');
	if (t.options.alignment == 'horizontal'){
	/////////////////////////////////////// Options for HORIZONTAL carousel ///////////////////////////////////////if (t.options.horizontalDir == 'left'){
	//////////// LEFT ////////////var _startP = 0;
	var _endP = -(jQuery(this).width()-t._source.width());
	var _currP = parseInt(jQuery(this).css('margin-left').replace('px',''),10);
	var _speedFix = (_currP*100/_endP)/100;
	jQuery(this).animate({
	'margin-left':-(jQuery(this).width()-_container.width())}
,parseInt(thislinerandom,10)-(parseInt(thislinerandom,10)*parseFloat(_speedFix,10)),"linear",function(){
	t._restartAnimation(jQuery(this),thislinerandom);
}
);
}
else{
	///////////// RIGHT /////////////var _startP = -(jQuery(this).width()-_container.width());
	var _endP = 0;
	var _currP = parseInt(jQuery(this).css('margin-left').replace('px',''),10);
	var _speedFix = 1-(_currP/_startP);
	jQuery(this).animate({
	'margin-left':0}
,parseInt(thislinerandom,10)-(parseInt(thislinerandom,10)*parseFloat(_speedFix,10)),"linear",function(){
	t._restartAnimation(jQuery(this),thislinerandom);
}
);
}
}
else{
	///////////////////////////////////// Options for VERTICAL carousel /////////////////////////////////////if (t.options.verticalDir == 'up'){
	////////// UP //////////var _startP = 0;
	var _endP = -(jQuery(this).height()-t._source.height());
	var _currP = parseInt(jQuery(this).css('margin-top').replace('px',''),10);
	var _speedFix = (_currP*100/_endP)/100;
	jQuery(this).animate({
	'margin-top':-(jQuery(this).height()-t._source.height())}
,parseInt(thislinerandom,10)-(parseInt(thislinerandom,10)*parseFloat(_speedFix,10)),"linear",function(){
	t._restartAnimation(jQuery(this),thislinerandom);
}
);
}
else{
	//////////// DOWN ////////////var _startP = -(jQuery(this).height()-_container.height());
	var _endP = 0;
	var _currP = parseInt(jQuery(this).css('margin-top').replace('px',''),10);
	var _speedFix = 1-(_currP/_startP);
	jQuery(this).animate({
	'margin-top':0}
,parseInt(thislinerandom,10)-(parseInt(thislinerandom,10)*parseFloat(_speedFix,10)),"linear",function(){
	t._restartAnimation(jQuery(this),thislinerandom);
}
);
}
}
}
);
}
,_restartAnimation:function(_list,_time){
	var t = this;
	// We save the original height or width of the list,so we can generate an index for the animation speedif (t.options.alignment == 'horizontal'){
	var _originalSize = _list.width();
}
else{
	var _originalSize = _list.height();
}
// Get the items to deleteif ((t.options.alignment != 'horizontal') && (t.options.verticalDir != 'up')){
	//alert('1');
	var _itemsToDelete = _list.find('li').slice((_list.find('li').length/2)-1);
}
else if ((t.options.alignment == 'horizontal') && (t.options.horizontalDir != 'left')){
	//alert('2');
	var _itemsToDelete = _list.find('li').slice((_list.find('li').length/2)-1);
}
else{
	//alert('3');
	var _itemsToDelete = _list.find('li').slice(0,(_list.find('li').length/2)-1);
}
// Create a new html string with the items to delete,so we can add them in the new positionvar _htmlToAdd = '';
	_itemsToDelete.each(function(){
	_htmlToAdd += jQuery(this)[0].outerHTML;
	jQuery(this).remove();
}
);
	// Lets generate the speed coeficient with the original and the new sizesvar _speedFix = 2;
	//if (t.options.alignment == 'horizontal'){
	_speedFix = _originalSize / _list.width();
}
//else{
	_speedFix = _originalSize / _list.height();
}
if (t.options.alignment == 'horizontal'){
	/////////////////////////////////////// Options for HORIZONTAL carousel ///////////////////////////////////////if (t.options.horizontalDir == 'left'){
	//////////// LEFT ////////////var _newWidth = 0;
	_list.find('li').each(function(){
	var _li = jQuery(this);
	_newWidth += (jQuery(this).width())+(t.options.lrPadding*2);
}
);
	_list.css({
	//'margin-left':-(_newWidth-jQuery(window).width())'margin-left':-(_newWidth-t._source.width())}
);
	_list.append(_htmlToAdd);
	_list.animate({
	//'margin-left':-(_list.width()-jQuery(window).width())'margin-left':-(_list.width()-t._source.width())}
,(_time/_speedFix),"linear",function(){
	t._restartAnimation(jQuery(this),_time);
}
);
}
else{
	///////////// RIGHT /////////////var _newWidth = 0;
	_list.find('li').each(function(){
	var _li = jQuery(this);
	_newWidth += (jQuery(this).width())+(t.options.lrPadding*2);
}
);
	_list.prepend(_htmlToAdd);
	var _evenNewerWidth = _list.width();
	_list.css({
	'margin-left':-(_evenNewerWidth-_newWidth)}
);
	_list.animate({
	'margin-left':0}
,(_time/_speedFix),"linear",function(){
	t._restartAnimation(jQuery(this),_time);
}
);
}
}
else{
	///////////////////////////////////// Options for VERTICAL carousel /////////////////////////////////////if (t.options.verticalDir == 'up'){
	////////// UP //////////var _newHeight = 0;
	_list.find('li').each(function(){
	var _li = jQuery(this);
	_newHeight += (jQuery(this).height())+(t.options.tbPadding*2);
}
);
	_list.css({
	'margin-top':-(_newHeight-t._source.height())}
);
	_list.append(_htmlToAdd);
	_list.animate({
	'margin-top':-(_list.height()-t._source.height())}
,(_time/_speedFix),"linear",function(){
	t._restartAnimation(jQuery(this),_time);
}
);
}
else{
	//////////// DOWN ////////////var _newHeight = 0;
	_list.find('li').each(function(){
	var _li = jQuery(this);
	_newHeight += (jQuery(this).height())+(t.options.tbPadding*2);
}
);
	_list.prepend(_htmlToAdd);
	var _evenNewerHeight = _list.height();
	_list.css({
	'margin-top':-(_evenNewerHeight-_newHeight)}
);
	_list.animate({
	'margin-top':0}
,(_time/_speedFix),"linear",function(){
	t._restartAnimation(jQuery(this),_time);
}
);
}
}
}
}
);
	$.fn.logoCarousel = function(opt){
	$(this).each(function(){
	return new at_logoCarouselObj($(this),opt);
}
);
}
;
}
)(jQuery);
	jQuery(document).ready(function(){
	jQuery('.at_logo_carousel').each(function(){
	var _t = jQuery(this);
	_t.waitForImages(function(){
	_t.logoCarousel();
}
);
}
);
}
);
	

JS代码(jquery.waitforimages.js):

;
	(function ($){
	// Namespace all events. var eventNamespace = 'waitForImages';
	// CSS properties which contain references to images. $.waitForImages ={
	hasImageProperties:['backgroundImage','listStyleImage','borderImage','borderCornerImage','cursor']}
;
	// Custom selector to find `img` elements that have a valid `src` attribute and have not already loaded. $.expr[':'].uncached = function (obj){
	// Ensure we are dealing with an `img` element with a valid `src` attribute. if (!$(obj).is('img[src!=""]')){
	return false;
}
// Firefox's `complete` property will always be `true` even if the image has not been downloaded. // Doing it this way works in Firefox. var img = new Image();
	img.src = obj.src;
	return !img.complete;
}
;
	$.fn.waitForImages = function (finishedCallback,eachCallback,waitForAll){
	var allImgsLength = 0;
	var allImgsLoaded = 0;
	// Handle options object. if ($.isPlainObject(arguments[0])){
	waitForAll = arguments[0].waitForAll;
	eachCallback = arguments[0].each;
	// This must be last as arguments[0]// is aliased with finishedCallback. finishedCallback = arguments[0].finished;
}
// Handle missing callbacks. finishedCallback = finishedCallback || $.noop;
	eachCallback = eachCallback || $.noop;
	// Convert waitForAll to Boolean waitForAll = !! waitForAll;
	// Ensure callbacks are functions. if (!$.isFunction(finishedCallback) || !$.isFunction(eachCallback)){
	throw new TypeError('An invalid callback was supplied.');
}
return this.each(function (){
	// Build a list of all imgs,dependent on what images will be considered. var obj = $(this);
	var allImgs = [];
	// CSS properties which may contain an image. var hasImgProperties = $.waitForImages.hasImageProperties || [];
	// To match `url()` references. // Spec:http://www.w3.org/TR/CSS2/syndata.html#value-def-uri var matchUrl = /url\(\s*(['"]?)(.*?)\1\s*\)/g;
	if (waitForAll){
	// Get all elements (including the original),as any one of them could have a background image. obj.find('*').addBack().each(function (){
	var element = $(this);
	// If an `img` element,add it. But keep iterating in case it has a background image too. if (element.is('img:uncached')){
	allImgs.push({
	src:element.attr('src'),element:element[0]}
);
}
$.each(hasImgProperties,function (i,property){
	var propertyValue = element.css(property);
	var match;
	// If it doesn't contain this property,skip. if (!propertyValue){
	return true;
}
// Get all url() of this element. while (match = matchUrl.exec(propertyValue)){
	allImgs.push({
	src:match[2],element:element[0]}
);
}
}
);
}
);
}
else{
	// For images only,the task is simpler. obj.find('img:uncached') .each(function (){
	allImgs.push({
	src:this.src,element:this}
);
}
);
}
allImgsLength = allImgs.length;
	allImgsLoaded = 0;
	// If no images found,don't bother. if (allImgsLength === 0){
	finishedCallback.call(obj[0]);
}
$.each(allImgs,function (i,img){
	var image = new Image();
	// Handle the image loading and error with the same callback. $(image).on('load.' + eventNamespace + ' error.' + eventNamespace,function (event){
	allImgsLoaded++;
	// If an error occurred with loading the image,set the third argument accordingly. eachCallback.call(img.element,allImgsLoaded,allImgsLength,event.type == 'load');
	if (allImgsLoaded == allImgsLength){
	finishedCallback.call(obj[0]);
	return false;
}
}
);
	image.src = img.src;
}
);
}
);
}
;
}
(jQuery));
	

CSS代码(zzsc.css):

@charset "utf-8";html{font-size:62.5%;}
.row{width:100%;max-width:960px;margin:0 auto;}
.row .row{width:auto;max-width:none;min-width:0;margin:0 -10px;}
.row.collapse .column,.row.collapse .columns{padding:0;}
.row .row.collapse{margin:0;}
.column,.columns{float:left;min-height:1px;padding:0 10px;position:relative;}
.column.centered,.columns.centered{float:none;margin:0 auto;}
[class*="column"] + [class*="column"]:last-child{}
[class*="column"] + [class*="column"].end{float:left;}
.one,.row .one{width:8.33333%;}
.two,.row .two{width:16.66667%;}
.three,.row .three{width:25%;}
.four,.row .four{width:33.33333%;}
.five,.row .five{width:41.66667%;}
.six,.row .six{width:50%;}
.seven,.row .seven{width:58.33333%;}
.eight,.row .eight{width:66.66667%;}
.nine,.row .nine{width:75%;}
.ten,.row .ten{width:83.33333%;}
.eleven,.row .eleven{width:91.66667%;}
.twelve,.row .twelve{width:100%;}
.at_logo_carousel{list-style:none;margin:0px;padding:1px 1px;position:relative;overflow:hidden;}
.at_logo_carousel > ul{padding:1px 1px;overflow:auto;margin:0px;}
.at_logo_carousel > ul > li img{opacity:0.5;-webkit-transition:opacity 300ms ease;-moz-transition:opacity 300ms ease;-ms-transition:opacity 300ms ease;-o-transition:opacity 300ms ease;transition:opacity 300ms ease;position:relative;max-width:100%;border:none;box-shadow:none;-webkit-box-shadow:none}
.at_logo_carousel > ul > li:hover img{opacity:1!important;}
/* VERTICAL */
.at_logo_carousel.at_vertical{padding:0px 0px;}
.at_logo_carousel.at_vertical > ul{padding:1px 1px;height:auto;overflow:visible;display:inline-block;float:left;margin-top:0px;margin-bottom:0px;}
.at_logo_carousel.at_vertical > ul > li{display:block;margin:0px 1px;text-align:center;float:none;padding:1px 0px;}
附件:下载该文件资源,减少时间成本(增值服务)
留言
该资源可下载
File Source
.rar
89.61 KB
Html JS 图片特效2
最新结算
jquery虚拟键盘中文打字效果js代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
jquery虚拟键盘中文打字效果js代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
HTML5实现CSS滤镜图片切换特效代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
jQuery头像裁剪插件cropbox js代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery头像裁剪插件cropbox js代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery+css3实现信封效果
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
我们力求给您提供有用的文章,再此基础上,会附加营收资源,不做任何广告,让平台可以更好发展 若您发现您的权利被侵害,或使用了您的版权,请发邮件联系 sunlifel@foxmail.com ggbig觉得 : 不提供源码的文章不是好文章
合作伙伴
联系我们
  • QQ:21499807
  • 邮箱:sunlifel@foxmail.com
  • QQ扫一扫加QQ
    QQ扫一扫
Copyright 2023-2024 ggbig.com·皖ICP备2023004211号-1
打赏文章