目录
HTML代码
CSS代码
JavaScript代码
首页 web前端 H5教程 HTML5实现的震撼3D焦点图动画详解介绍

HTML5实现的震撼3D焦点图动画详解介绍

Mar 04, 2017 pm 04:51 PM
html5

这是一款基于HTML5和jQuery的3D焦点图动画,焦点图中的图片利用了CSS3的相关特性实现图片倾斜效果,从而让图片出现3D的视觉效果。这款HTML5焦点图不仅可以手动点击按钮切换图片,而且还支持自动切换图片,使用起来也相当方便。如果你需要在网站中展示产品图片,那么这款焦点图插件非常适合你。

HTML代码

<section id="dg-container" class="dg-container">
	<p class="dg-wrapper">
		<a href="#"><img src="images/1.jpg" alt="image01"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/2.jpg" alt="image02"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/3.jpg" alt="image03"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/4.jpg" alt="image04"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/5.jpg" alt="image05"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/6.jpg" alt="image06"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/7.jpg" alt="image07"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/8.jpg" alt="image08"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/9.jpg" alt="image09"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/10.jpg" alt="image10"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/11.jpg" alt="image11"><p>http://www.php.cn/;/p></a>
		<a href="#"><img src="images/12.jpg" alt="image12"><p>http://www.php.cn/;/p></a>
	</p>
	<nav>	
		<span class="dg-prev">&lt;</span>
		<span class="dg-next">&gt;</span>
	</nav>
</section>
登录后复制

CSS代码

.dg-container{
	width: 100%;
	height: 450px;
	position: relative;
}
.dg-wrapper{
	width: 481px;
	height: 316px;
	margin: 0 auto;
	position: relative;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	-o-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
}
.dg-wrapper a{
	width: 482px;
	height: 316px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background: transparent url(../images/browser.png) no-repeat top left;
	box-shadow: 0px 10px 20px rgba(0,0,0,0.3);
}
.dg-wrapper a.dg-transition{
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.dg-wrapper a img{
	display: block;
	padding: 41px 0px 0px 1px;
}
.dg-wrapper a p{
	font-style: italic;
	text-align: center;
	line-height: 50px;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
	color: #333;
	font-size: 16px;
	width: 100%;
	bottom: -55px;
	display: none;
	position: absolute;
}
.dg-wrapper a.dg-center p{
	display: block;
}
.dg-container nav{
	width: 58px;
	position: absolute;
	z-index: 1000;
	bottom: 40px;
	left: 50%;
	margin-left: -29px;
}
.dg-container nav span{
	text-indent: -9000px;
	float: left;
	cursor:pointer;
	width: 24px;
	height: 25px;
	opacity: 0.8;
	background: transparent url(../images/arrows.png) no-repeat top left;
}
.dg-container nav span:hover{
	opacity: 1;
}
.dg-container nav span.dg-next{
	background-position: top right;
	margin-left: 10px;
}
登录后复制

JavaScript代码

/**
 * jquery.gallery.js
 * http://www.php.cn/
 *
 * Copyright 2011, Pedro Botelho / Codrops
 * Free to use under the MIT license.
 *
 * Date: Mon Jan 30 2012
 */

(function( $, undefined ) {

	/*
	 * Gallery object.
	 */
	$.Gallery 				= function( options, element ) {

		this.$el	= $( element );
		this._init( options );

	};

	$.Gallery.defaults 		= {
		current		: 0,	// index of current item
		autoplay	: false,// slideshow on / off
		interval	: 2000  // time between transitions
    };

	$.Gallery.prototype 	= {
		_init 				: function( options ) {

			this.options 		= $.extend( true, {}, $.Gallery.defaults, options );

			// support for 3d / 2d transforms and transitions
			this.support3d		= Modernizr.csstransforms3d;
			this.support2d		= Modernizr.csstransforms;
			this.supportTrans	= Modernizr.csstransitions;

			this.$wrapper		= this.$el.find(&#39;.dg-wrapper&#39;);

			this.$items			= this.$wrapper.children();
			this.itemsCount		= this.$items.length;

			this.$nav			= this.$el.find(&#39;nav&#39;);
			this.$navPrev		= this.$nav.find(&#39;.dg-prev&#39;);
			this.$navNext		= this.$nav.find(&#39;.dg-next&#39;);

			// minimum of 3 items
			if( this.itemsCount < 3 ) {

				this.$nav.remove();
				return false;

			}	

			this.current		= this.options.current;

			this.isAnim			= false;

			this.$items.css({
				&#39;opacity&#39;	: 0,
				&#39;visibility&#39;: &#39;hidden&#39;
			});

			this._validate();

			this._layout();

			// load the events
			this._loadEvents();

			// slideshow
			if( this.options.autoplay ) {

				this._startSlideshow();

			}

		},
		_validate			: function() {

			if( this.options.current < 0 || this.options.current > this.itemsCount - 1 ) {

				this.current = 0;

			}	

		},
		_layout				: function() {

			// current, left and right items
			this._setItems();

			// current item is not changed
			// left and right one are rotated and translated
			var leftCSS, rightCSS, currentCSS;

			if( this.support3d && this.supportTrans ) {

				leftCSS 	= {
					&#39;-webkit-transform&#39;	: &#39;translateX(-350px) translateZ(-200px) rotateY(45deg)&#39;,
					&#39;-moz-transform&#39;	: &#39;translateX(-350px) translateZ(-200px) rotateY(45deg)&#39;,
					&#39;-o-transform&#39;		: &#39;translateX(-350px) translateZ(-200px) rotateY(45deg)&#39;,
					&#39;-ms-transform&#39;		: &#39;translateX(-350px) translateZ(-200px) rotateY(45deg)&#39;,
					&#39;transform&#39;			: &#39;translateX(-350px) translateZ(-200px) rotateY(45deg)&#39;
				};

				rightCSS	= {
					&#39;-webkit-transform&#39;	: &#39;translateX(350px) translateZ(-200px) rotateY(-45deg)&#39;,
					&#39;-moz-transform&#39;	: &#39;translateX(350px) translateZ(-200px) rotateY(-45deg)&#39;,
					&#39;-o-transform&#39;		: &#39;translateX(350px) translateZ(-200px) rotateY(-45deg)&#39;,
					&#39;-ms-transform&#39;		: &#39;translateX(350px) translateZ(-200px) rotateY(-45deg)&#39;,
					&#39;transform&#39;			: &#39;translateX(350px) translateZ(-200px) rotateY(-45deg)&#39;
				};

				leftCSS.opacity		= 1;
				leftCSS.visibility	= &#39;visible&#39;;
				rightCSS.opacity	= 1;
				rightCSS.visibility	= &#39;visible&#39;;

			}
			else if( this.support2d && this.supportTrans ) {

				leftCSS 	= {
					&#39;-webkit-transform&#39;	: &#39;translate(-350px) scale(0.8)&#39;,
					&#39;-moz-transform&#39;	: &#39;translate(-350px) scale(0.8)&#39;,
					&#39;-o-transform&#39;		: &#39;translate(-350px) scale(0.8)&#39;,
					&#39;-ms-transform&#39;		: &#39;translate(-350px) scale(0.8)&#39;,
					&#39;transform&#39;			: &#39;translate(-350px) scale(0.8)&#39;
				};

				rightCSS	= {
					&#39;-webkit-transform&#39;	: &#39;translate(350px) scale(0.8)&#39;,
					&#39;-moz-transform&#39;	: &#39;translate(350px) scale(0.8)&#39;,
					&#39;-o-transform&#39;		: &#39;translate(350px) scale(0.8)&#39;,
					&#39;-ms-transform&#39;		: &#39;translate(350px) scale(0.8)&#39;,
					&#39;transform&#39;			: &#39;translate(350px) scale(0.8)&#39;
				};

				currentCSS	= {
					&#39;z-index&#39;			: 999
				};

				leftCSS.opacity		= 1;
				leftCSS.visibility	= &#39;visible&#39;;
				rightCSS.opacity	= 1;
				rightCSS.visibility	= &#39;visible&#39;;

			}

			this.$leftItm.css( leftCSS || {} );
			this.$rightItm.css( rightCSS || {} );

			this.$currentItm.css( currentCSS || {} ).css({
				&#39;opacity&#39;	: 1,
				&#39;visibility&#39;: &#39;visible&#39;
			}).addClass(&#39;dg-center&#39;);

		},
		_setItems			: function() {

			this.$items.removeClass(&#39;dg-center&#39;);

			this.$currentItm	= this.$items.eq( this.current );
			this.$leftItm		= ( this.current === 0 ) ? this.$items.eq( this.itemsCount - 1 ) : this.$items.eq( this.current - 1 );
			this.$rightItm		= ( this.current === this.itemsCount - 1 ) ? this.$items.eq( 0 ) : this.$items.eq( this.current + 1 );

			if( !this.support3d && this.support2d && this.supportTrans ) {

				this.$items.css( &#39;z-index&#39;, 1 );
				this.$currentItm.css( &#39;z-index&#39;, 999 );

			}

			// next & previous items
			if( this.itemsCount > 3 ) {

				// next item
				this.$nextItm		= ( this.$rightItm.index() === this.itemsCount - 1 ) ? this.$items.eq( 0 ) : this.$rightItm.next();
				this.$nextItm.css( this._getCoordinates(&#39;outright&#39;) );

				// previous item
				this.$prevItm		= ( this.$leftItm.index() === 0 ) ? this.$items.eq( this.itemsCount - 1 ) : this.$leftItm.prev();
				this.$prevItm.css( this._getCoordinates(&#39;outleft&#39;) );

			}

		},
		_loadEvents			: function() {

			var _self	= this;

			this.$navPrev.on( &#39;click.gallery&#39;, function( event ) {

				if( _self.options.autoplay ) {

					clearTimeout( _self.slideshow );
					_self.options.autoplay	= false;

				}

				_self._navigate(&#39;prev&#39;);
				return false;

			});

			this.$navNext.on( &#39;click.gallery&#39;, function( event ) {

				if( _self.options.autoplay ) {

					clearTimeout( _self.slideshow );
					_self.options.autoplay	= false;

				}

				_self._navigate(&#39;next&#39;);
				return false;

			});

			this.$wrapper.on( &#39;webkitTransitionEnd.gallery transitionend.gallery OTransitionEnd.gallery&#39;, function( event ) {

				_self.$currentItm.addClass(&#39;dg-center&#39;);
				_self.$items.removeClass(&#39;dg-transition&#39;);
				_self.isAnim	= false;

			});

		},
		_getCoordinates		: function( position ) {

			if( this.support3d && this.supportTrans ) {

				switch( position ) {
					case &#39;outleft&#39;:
						return {
							&#39;-webkit-transform&#39;	: &#39;translateX(-450px) translateZ(-300px) rotateY(45deg)&#39;,
							&#39;-moz-transform&#39;	: &#39;translateX(-450px) translateZ(-300px) rotateY(45deg)&#39;,
							&#39;-o-transform&#39;		: &#39;translateX(-450px) translateZ(-300px) rotateY(45deg)&#39;,
							&#39;-ms-transform&#39;		: &#39;translateX(-450px) translateZ(-300px) rotateY(45deg)&#39;,
							&#39;transform&#39;			: &#39;translateX(-450px) translateZ(-300px) rotateY(45deg)&#39;,
							&#39;opacity&#39;			: 0,
							&#39;visibility&#39;		: &#39;hidden&#39;
						};
						break;
					case &#39;outright&#39;:
						return {
							&#39;-webkit-transform&#39;	: &#39;translateX(450px) translateZ(-300px) rotateY(-45deg)&#39;,
							&#39;-moz-transform&#39;	: &#39;translateX(450px) translateZ(-300px) rotateY(-45deg)&#39;,
							&#39;-o-transform&#39;		: &#39;translateX(450px) translateZ(-300px) rotateY(-45deg)&#39;,
							&#39;-ms-transform&#39;		: &#39;translateX(450px) translateZ(-300px) rotateY(-45deg)&#39;,
							&#39;transform&#39;			: &#39;translateX(450px) translateZ(-300px) rotateY(-45deg)&#39;,
							&#39;opacity&#39;			: 0,
							&#39;visibility&#39;		: &#39;hidden&#39;
						};
						break;
					case &#39;left&#39;:
						return {
							&#39;-webkit-transform&#39;	: &#39;translateX(-350px) translateZ(-200px) rotateY(45deg)&#39;,
							&#39;-moz-transform&#39;	: &#39;translateX(-350px) translateZ(-200px) rotateY(45deg)&#39;,
							&#39;-o-transform&#39;		: &#39;translateX(-350px) translateZ(-200px) rotateY(45deg)&#39;,
							&#39;-ms-transform&#39;		: &#39;translateX(-350px) translateZ(-200px) rotateY(45deg)&#39;,
							&#39;transform&#39;			: &#39;translateX(-350px) translateZ(-200px) rotateY(45deg)&#39;,
							&#39;opacity&#39;			: 1,
							&#39;visibility&#39;		: &#39;visible&#39;
						};
						break;
					case &#39;right&#39;:
						return {
							&#39;-webkit-transform&#39;	: &#39;translateX(350px) translateZ(-200px) rotateY(-45deg)&#39;,
							&#39;-moz-transform&#39;	: &#39;translateX(350px) translateZ(-200px) rotateY(-45deg)&#39;,
							&#39;-o-transform&#39;		: &#39;translateX(350px) translateZ(-200px) rotateY(-45deg)&#39;,
							&#39;-ms-transform&#39;		: &#39;translateX(350px) translateZ(-200px) rotateY(-45deg)&#39;,
							&#39;transform&#39;			: &#39;translateX(350px) translateZ(-200px) rotateY(-45deg)&#39;,
							&#39;opacity&#39;			: 1,
							&#39;visibility&#39;		: &#39;visible&#39;
						};
						break;
					case &#39;center&#39;:
						return {
							&#39;-webkit-transform&#39;	: &#39;translateX(0px) translateZ(0px) rotateY(0deg)&#39;,
							&#39;-moz-transform&#39;	: &#39;translateX(0px) translateZ(0px) rotateY(0deg)&#39;,
							&#39;-o-transform&#39;		: &#39;translateX(0px) translateZ(0px) rotateY(0deg)&#39;,
							&#39;-ms-transform&#39;		: &#39;translateX(0px) translateZ(0px) rotateY(0deg)&#39;,
							&#39;transform&#39;			: &#39;translateX(0px) translateZ(0px) rotateY(0deg)&#39;,
							&#39;opacity&#39;			: 1,
							&#39;visibility&#39;		: &#39;visible&#39;
						};
						break;
				};

			}
			else if( this.support2d && this.supportTrans ) {

				switch( position ) {
					case &#39;outleft&#39;:
						return {
							&#39;-webkit-transform&#39;	: &#39;translate(-450px) scale(0.7)&#39;,
							&#39;-moz-transform&#39;	: &#39;translate(-450px) scale(0.7)&#39;,
							&#39;-o-transform&#39;		: &#39;translate(-450px) scale(0.7)&#39;,
							&#39;-ms-transform&#39;		: &#39;translate(-450px) scale(0.7)&#39;,
							&#39;transform&#39;			: &#39;translate(-450px) scale(0.7)&#39;,
							&#39;opacity&#39;			: 0,
							&#39;visibility&#39;		: &#39;hidden&#39;
						};
						break;
					case &#39;outright&#39;:
						return {
							&#39;-webkit-transform&#39;	: &#39;translate(450px) scale(0.7)&#39;,
							&#39;-moz-transform&#39;	: &#39;translate(450px) scale(0.7)&#39;,
							&#39;-o-transform&#39;		: &#39;translate(450px) scale(0.7)&#39;,
							&#39;-ms-transform&#39;		: &#39;translate(450px) scale(0.7)&#39;,
							&#39;transform&#39;			: &#39;translate(450px) scale(0.7)&#39;,
							&#39;opacity&#39;			: 0,
							&#39;visibility&#39;		: &#39;hidden&#39;
						};
						break;
					case &#39;left&#39;:
						return {
							&#39;-webkit-transform&#39;	: &#39;translate(-350px) scale(0.8)&#39;,
							&#39;-moz-transform&#39;	: &#39;translate(-350px) scale(0.8)&#39;,
							&#39;-o-transform&#39;		: &#39;translate(-350px) scale(0.8)&#39;,
							&#39;-ms-transform&#39;		: &#39;translate(-350px) scale(0.8)&#39;,
							&#39;transform&#39;			: &#39;translate(-350px) scale(0.8)&#39;,
							&#39;opacity&#39;			: 1,
							&#39;visibility&#39;		: &#39;visible&#39;
						};
						break;
					case &#39;right&#39;:
						return {
							&#39;-webkit-transform&#39;	: &#39;translate(350px) scale(0.8)&#39;,
							&#39;-moz-transform&#39;	: &#39;translate(350px) scale(0.8)&#39;,
							&#39;-o-transform&#39;		: &#39;translate(350px) scale(0.8)&#39;,
							&#39;-ms-transform&#39;		: &#39;translate(350px) scale(0.8)&#39;,
							&#39;transform&#39;			: &#39;translate(350px) scale(0.8)&#39;,
							&#39;opacity&#39;			: 1,
							&#39;visibility&#39;		: &#39;visible&#39;
						};
						break;
					case &#39;center&#39;:
						return {
							&#39;-webkit-transform&#39;	: &#39;translate(0px) scale(1)&#39;,
							&#39;-moz-transform&#39;	: &#39;translate(0px) scale(1)&#39;,
							&#39;-o-transform&#39;		: &#39;translate(0px) scale(1)&#39;,
							&#39;-ms-transform&#39;		: &#39;translate(0px) scale(1)&#39;,
							&#39;transform&#39;			: &#39;translate(0px) scale(1)&#39;,
							&#39;opacity&#39;			: 1,
							&#39;visibility&#39;		: &#39;visible&#39;
						};
						break;
				};

			}
			else {

				switch( position ) {
					case &#39;outleft&#39;	: 
					case &#39;outright&#39;	: 
					case &#39;left&#39;		: 
					case &#39;right&#39;	:
						return {
							&#39;opacity&#39;			: 0,
							&#39;visibility&#39;		: &#39;hidden&#39;
						};
						break;
					case &#39;center&#39;	:
						return {
							&#39;opacity&#39;			: 1,
							&#39;visibility&#39;		: &#39;visible&#39;
						};
						break;
				};

			}

		},
		_navigate			: function( dir ) {

			if( this.supportTrans && this.isAnim )
				return false;

			this.isAnim	= true;

			switch( dir ) {

				case &#39;next&#39; :

					this.current	= this.$rightItm.index();

					// current item moves left
					this.$currentItm.addClass(&#39;dg-transition&#39;).css( this._getCoordinates(&#39;left&#39;) );

					// right item moves to the center
					this.$rightItm.addClass(&#39;dg-transition&#39;).css( this._getCoordinates(&#39;center&#39;) );	

					// next item moves to the right
					if( this.$nextItm ) {

						// left item moves out
						this.$leftItm.addClass(&#39;dg-transition&#39;).css( this._getCoordinates(&#39;outleft&#39;) );

						this.$nextItm.addClass(&#39;dg-transition&#39;).css( this._getCoordinates(&#39;right&#39;) );

					}
					else {

						// left item moves right
						this.$leftItm.addClass(&#39;dg-transition&#39;).css( this._getCoordinates(&#39;right&#39;) );

					}
					break;

				case &#39;prev&#39; :

					this.current	= this.$leftItm.index();

					// current item moves right
					this.$currentItm.addClass(&#39;dg-transition&#39;).css( this._getCoordinates(&#39;right&#39;) );

					// left item moves to the center
					this.$leftItm.addClass(&#39;dg-transition&#39;).css( this._getCoordinates(&#39;center&#39;) );

					// prev item moves to the left
					if( this.$prevItm ) {

						// right item moves out
						this.$rightItm.addClass(&#39;dg-transition&#39;).css( this._getCoordinates(&#39;outright&#39;) );

						this.$prevItm.addClass(&#39;dg-transition&#39;).css( this._getCoordinates(&#39;left&#39;) );

					}
					else {

						// right item moves left
						this.$rightItm.addClass(&#39;dg-transition&#39;).css( this._getCoordinates(&#39;left&#39;) );

					}
					break;	

			};

			this._setItems();

			if( !this.supportTrans )
				this.$currentItm.addClass(&#39;dg-center&#39;);

		},
		_startSlideshow		: function() {

			var _self	= this;

			this.slideshow	= setTimeout( function() {

				_self._navigate( &#39;next&#39; );

				if( _self.options.autoplay ) {

					_self._startSlideshow();

				}

			}, this.options.interval );

		},
		destroy				: function() {

			this.$navPrev.off(&#39;.gallery&#39;);
			this.$navNext.off(&#39;.gallery&#39;);
			this.$wrapper.off(&#39;.gallery&#39;);

		}
	};

	var logError 			= function( message ) {
		if ( this.console ) {
			console.error( message );
		}
	};

	$.fn.gallery			= function( options ) {

		if ( typeof options === &#39;string&#39; ) {

			var args = Array.prototype.slice.call( arguments, 1 );

			this.each(function() {

				var instance = $.data( this, &#39;gallery&#39; );

				if ( !instance ) {
					logError( "cannot call methods on gallery prior to initialization; " +
					"attempted to call method &#39;" + options + "&#39;" );
					return;
				}

				if ( !$.isFunction( instance[options] ) || options.charAt(0) === "_" ) {
					logError( "no such method &#39;" + options + "&#39; for gallery instance" );
					return;
				}

				instance[ options ].apply( instance, args );

			});

		} 
		else {

			this.each(function() {

				var instance = $.data( this, &#39;gallery&#39; );
				if ( !instance ) {
					$.data( this, &#39;gallery&#39;, new $.Gallery( options, this ) );
				}
			});

		}

		return this;

	};

})( jQuery );
登录后复制

 以上就是HTML5实现的震撼3D焦点图动画详解介绍的内容,更多相关内容请关注PHP中文网(www.php.cn)!


本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

HTML 中的表格边框 HTML 中的表格边框 Sep 04, 2024 pm 04:49 PM

HTML 表格边框指南。在这里,我们以 HTML 中的表格边框为例,讨论定义表格边框的多种方法。

HTML 中的嵌套表 HTML 中的嵌套表 Sep 04, 2024 pm 04:49 PM

这是 HTML 中嵌套表的指南。这里我们讨论如何在表中创建表以及相应的示例。

HTML 左边距 HTML 左边距 Sep 04, 2024 pm 04:48 PM

HTML 左边距指南。在这里,我们讨论 HTML margin-left 的简要概述及其示例及其代码实现。

HTML 表格布局 HTML 表格布局 Sep 04, 2024 pm 04:54 PM

HTML 表格布局指南。在这里,我们详细讨论 HTML 表格布局的值以及示例和输出。

HTML 输入占位符 HTML 输入占位符 Sep 04, 2024 pm 04:54 PM

HTML 输入占位符指南。在这里,我们讨论 HTML 输入占位符的示例以及代码和输出。

在 HTML 中移动文本 在 HTML 中移动文本 Sep 04, 2024 pm 04:45 PM

HTML 中的文本移动指南。在这里我们讨论一下marquee标签如何使用语法和实现示例。

HTML 有序列表 HTML 有序列表 Sep 04, 2024 pm 04:43 PM

HTML 有序列表指南。在这里我们还分别讨论了 HTML 有序列表和类型的介绍以及它们的示例

HTML onclick 按钮 HTML onclick 按钮 Sep 04, 2024 pm 04:49 PM

HTML onclick 按钮指南。这里我们分别讨论它们的介绍、工作原理、示例以及各个事件中的onclick事件。

See all articles