国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

HTML5+CSS實現(xiàn)圖片3D旋轉(zhuǎn)效果,附音樂

這篇具有很好參考價值的文章主要介紹了HTML5+CSS實現(xiàn)圖片3D旋轉(zhuǎn)效果,附音樂。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

利用程序呈現(xiàn)圖片,可以俘獲一眾女生的心,增加音樂可以實現(xiàn)圖片變化的同時也帶上了想要得到效果,如此一程序?qū)嵞吮娙酥病?/p>

先看看程序呈現(xiàn)的效果,還是特別吸引人的。

html圖片旋轉(zhuǎn)效果代碼,html5,前端,html

先在網(wǎng)上爬取想要呈現(xiàn)的美女照片,存放在文件夾img-one,與程序路徑一致。

圖片像素需進行調(diào)整,同一面圖片可以使用同一個圖片,保持圖片像素一致的同時也增加了立體感。第二張02.jpg和2.jpg可以倒著放,這樣在程序?qū)崿F(xiàn)的時候,可以和其他方向的圖片一致。

html圖片旋轉(zhuǎn)效果代碼,html5,前端,html

從網(wǎng)上下載自己想要播放的音樂,保存在文件mp3內(nèi)。?

html圖片旋轉(zhuǎn)效果代碼,html5,前端,html

接下來就是前端呈現(xiàn)的代碼了,利用HBuilder實現(xiàn)HTML5代碼的編寫。

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8" />
    <title></title>
    <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
    <link type="text/css" href="./css/style1.css" rel="stylesheet" />
    <!--
    	作者:ning@qq.com
    	時間:2022-11-20
    	描述:style1.css文件為調(diào)用圖片的代碼,img-one為存放圖片的文件,mp3為需要播放的音樂
    	需注意調(diào)整圖片像素值,否則呈現(xiàn)不完整
    -->
    <style>
        html,
        body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

        .container {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            background-color: #000000;
        }
    </style>
</head>

<body>
    
    <div class="m-main">
		<div class="player">
			<a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" id="js-play">
				<img src="./img-one/開始.png" alt="" id="img1"/>
            </a>
			<a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" id="js-pause">
				<img src="./img-one/暫停.png" alt="" id="img2"/>
			</a>
			<div class="play-box">
				<div class="left">
					<p class="timeline"><span style=""></span></p>
					<div class="info">
						<span class="size">00:00</span>
						<span class="timeshow">00:00</span>
					</div>
				</div>
			</div>
		</div>
		<div class="video">
			<video controls autoplay name="media" id="js-video"><source src="./mp3/白月光與朱砂痣.mp3" type="video/mp4"></video>
		</div>
	</div>
</div>
    <div id="jsi-cherry-container" class="container">
        <div class="box">
            <ul class="minbox">
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
            </ul>
            <ol class="maxbox">
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
            </ol>
        </div>
    </div>
    <script>
        $(function () {
            AudioControl('js-video');

            function AudioControl(id) {
                // 音頻控制進度條
                console.log(777);
                var audio = document.getElementById(id);
                $(audio).on('loadedmetadata', function () {
                    audio.pause();
                    // 進度條控制
                    $(document).on('touchend', '.timeline', function (e) {
                        var x = e.originalEvent.changedTouches[0].clientX - this.offsetLeft;
                        var X = x < 0 ? 0 : x;
                        var W = $(this).width();
                        var place = X > W ? W : X;
                        audio.currentTime = (place / W).toFixed(2) * audio.duration;
                        $(this).children().css({
                            width: (place / W).toFixed(2) * 100 + "%"
                        })
                    });
                    // 播放
                    $(document).on('click', '#js-play', function () {
                        audio.play()
                        $('#img1').css("display","none");
                        $('#img2').css("display","block");
                    });
                    // 暫停
                    $(document).on('click', '#js-pause', function () {
                        audio.pause()
                        $('#img1').css("display","block");
                        $('#img2').css("display","none");
                    });
                });
                setInterval(function () {
                    var currentTime = audio.currentTime;
                    setTimeShow(currentTime);
                }, 1000);
                // 設(shè)置播放時間
                function setTimeShow(t) {
                    t = Math.floor(t);
                    var playTime = secondToMin(audio.currentTime);
                    $(".size").html(playTime);
                    $('.timeshow').text(secondToMin(audio.duration));
                    $('.timeline').children().css({
                        width: (t / audio.duration).toFixed(4) * 100 + "%"
                    })
                }
                // 計算時間
                function secondToMin(s) {
                    var MM = Math.floor(s / 60);
                    var SS = s % 60;
                    if (MM < 10)
                        MM = "0" + MM;
                    if (SS < 10)
                        SS = "0" + SS;
                    var min = MM + ":" + SS;
                    return min.split('.')[0];
                }
            }
        })
        var RENDERER = {
            INIT_CHERRY_BLOSSOM_COUNT: 30,
            MAX_ADDING_INTERVAL: 10,

            init: function () {
                this.setParameters();
                this.reconstructMethods();
                this.createCherries();
                this.render();
                if (
                    navigator.userAgent.match(
                        /(phone|pod|iPhone|iPod|ios|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
                    )
                ) {
                    var box = document.querySelectorAll('.box')[0];
                    console.log(box, '移動端');
                    box.style.marginTop = '65%';
                }
            },
            setParameters: function () {
                this.$container = $('#jsi-cherry-container');
                this.width = this.$container.width();
                this.height = this.$container.height();
                this.context = $('<canvas />')
                    .attr({
                        width: this.width,
                        height: this.height
                    })
                    .appendTo(this.$container)
                    .get(0)
                    .getContext('2d');
                this.cherries = [];
                this.maxAddingInterval = Math.round(
                    (this.MAX_ADDING_INTERVAL * 1000) / this.width
                );
                this.addingInterval = this.maxAddingInterval;
            },
            reconstructMethods: function () {
                this.render = this.render.bind(this);
            },
            createCherries: function () {
                for (
                    var i = 0,
                        length = Math.round(
                            (this.INIT_CHERRY_BLOSSOM_COUNT * this.width) / 1000
                        ); i < length; i++
                ) {
                    this.cherries.push(new CHERRY_BLOSSOM(this, true));
                }
            },
            render: function () {
                requestAnimationFrame(this.render);
                this.context.clearRect(0, 0, this.width, this.height);

                this.cherries.sort(function (cherry1, cherry2) {
                    return cherry1.z - cherry2.z;
                });
                for (var i = this.cherries.length - 1; i >= 0; i--) {
                    if (!this.cherries[i].render(this.context)) {
                        this.cherries.splice(i, 1);
                    }
                }
                if (--this.addingInterval == 0) {
                    this.addingInterval = this.maxAddingInterval;
                    this.cherries.push(new CHERRY_BLOSSOM(this, false));
                }
            }
        };
        var CHERRY_BLOSSOM = function (renderer, isRandom) {
            this.renderer = renderer;
            this.init(isRandom);
        };
        CHERRY_BLOSSOM.prototype = {
            FOCUS_POSITION: 300,
            FAR_LIMIT: 600,
            MAX_RIPPLE_COUNT: 100,
            RIPPLE_RADIUS: 100,
            SURFACE_RATE: 0.5,
            SINK_OFFSET: 20,

            init: function (isRandom) {
                this.x = this.getRandomValue(
                    -this.renderer.width,
                    this.renderer.width
                );
                this.y = isRandom ?
                    this.getRandomValue(0, this.renderer.height) :
                    this.renderer.height * 1.5;
                this.z = this.getRandomValue(0, this.FAR_LIMIT);
                this.vx = this.getRandomValue(-2, 2);
                this.vy = -2;
                this.theta = this.getRandomValue(0, Math.PI * 2);
                this.phi = this.getRandomValue(0, Math.PI * 2);
                this.psi = 0;
                this.dpsi = this.getRandomValue(Math.PI / 600, Math.PI / 300);
                this.opacity = 0;
                this.endTheta = false;
                this.endPhi = false;
                this.rippleCount = 0;

                var axis = this.getAxis(),
                    theta =
                    this.theta +
                    (Math.ceil(
                            -(this.y + this.renderer.height * this.SURFACE_RATE) / this.vy
                        ) *
                        Math.PI) /
                    500;
                theta %= Math.PI * 2;

                this.offsetY =
                    40 * (theta <= Math.PI / 2 || theta >= (Math.PI * 3) / 2 ? -1 : 1);
                this.thresholdY =
                    this.renderer.height / 2 +
                    this.renderer.height * this.SURFACE_RATE * axis.rate;
                this.entityColor = this.renderer.context.createRadialGradient(
                    0,
                    40,
                    0,
                    0,
                    40,
                    80
                );
                this.entityColor.addColorStop(
                    0,
                    'hsl(330, 70%, ' + 50 * (0.3 + axis.rate) + '%)'
                );
                this.entityColor.addColorStop(
                    0.05,
                    'hsl(330, 40%,' + 55 * (0.3 + axis.rate) + '%)'
                );
                this.entityColor.addColorStop(
                    1,
                    'hsl(330, 20%, ' + 70 * (0.3 + axis.rate) + '%)'
                );
                this.shadowColor = this.renderer.context.createRadialGradient(
                    0,
                    40,
                    0,
                    0,
                    40,
                    80
                );
                this.shadowColor.addColorStop(
                    0,
                    'hsl(330, 40%, ' + 30 * (0.3 + axis.rate) + '%)'
                );
                this.shadowColor.addColorStop(
                    0.05,
                    'hsl(330, 40%,' + 30 * (0.3 + axis.rate) + '%)'
                );
                this.shadowColor.addColorStop(
                    1,
                    'hsl(330, 20%, ' + 40 * (0.3 + axis.rate) + '%)'
                );
            },
            getRandomValue: function (min, max) {
                return min + (max - min) * Math.random();
            },
            getAxis: function () {
                var rate = this.FOCUS_POSITION / (this.z + this.FOCUS_POSITION),
                    x = this.renderer.width / 2 + this.x * rate,
                    y = this.renderer.height / 2 - this.y * rate;
                return {
                    rate: rate,
                    x: x,
                    y: y
                };
            },
            renderCherry: function (context, axis) {
                context.beginPath();
                context.moveTo(0, 40);
                context.bezierCurveTo(-60, 20, -10, -60, 0, -20);
                context.bezierCurveTo(10, -60, 60, 20, 0, 40);
                context.fill();

                for (var i = -4; i < 4; i++) {
                    context.beginPath();
                    context.moveTo(0, 40);
                    context.quadraticCurveTo(i * 12, 10, i * 4, -24 + Math.abs(i) * 2);
                    context.stroke();
                }
            },
            render: function (context) {
                var axis = this.getAxis();

                if (
                    axis.y == this.thresholdY &&
                    this.rippleCount < this.MAX_RIPPLE_COUNT
                ) {
                    context.save();
                    context.lineWidth = 2;
                    context.strokeStyle =
                        'hsla(0, 0%, 100%, ' +
                        (this.MAX_RIPPLE_COUNT - this.rippleCount) /
                        this.MAX_RIPPLE_COUNT +
                        ')';
                    context.translate(
                        axis.x +
                        this.offsetY * axis.rate * (this.theta <= Math.PI ? -1 : 1),
                        axis.y
                    );
                    context.scale(1, 0.3);
                    context.beginPath();
                    context.arc(
                        0,
                        0,
                        (this.rippleCount / this.MAX_RIPPLE_COUNT) *
                        this.RIPPLE_RADIUS *
                        axis.rate,
                        0,
                        Math.PI * 2,
                        false
                    );
                    context.stroke();
                    context.restore();
                    this.rippleCount++;
                }
                if (axis.y < this.thresholdY || !this.endTheta || !this.endPhi) {
                    if (this.y <= 0) {
                        this.opacity = Math.min(this.opacity + 0.01, 1);
                    }
                    context.save();
                    context.globalAlpha = this.opacity;
                    context.fillStyle = this.shadowColor;
                    context.strokeStyle =
                        'hsl(330, 30%,' + 40 * (0.3 + axis.rate) + '%)';
                    context.translate(
                        axis.x,
                        Math.max(axis.y, this.thresholdY + this.thresholdY - axis.y)
                    );
                    context.rotate(Math.PI - this.theta);
                    context.scale(axis.rate * -Math.sin(this.phi), axis.rate);
                    context.translate(0, this.offsetY);
                    this.renderCherry(context, axis);
                    context.restore();
                }
                context.save();
                context.fillStyle = this.entityColor;
                context.strokeStyle = 'hsl(330, 40%,' + 70 * (0.3 + axis.rate) + '%)';
                context.translate(
                    axis.x,
                    axis.y + Math.abs(this.SINK_OFFSET * Math.sin(this.psi) * axis.rate)
                );
                context.rotate(this.theta);
                context.scale(axis.rate * Math.sin(this.phi), axis.rate);
                context.translate(0, this.offsetY);
                this.renderCherry(context, axis);
                context.restore();

                if (this.y <= -this.renderer.height / 4) {
                    if (!this.endTheta) {
                        for (
                            var theta = Math.PI / 2, end = (Math.PI * 3) / 2; theta <= end; theta += Math.PI
                        ) {
                            if (this.theta < theta && this.theta + Math.PI / 200 > theta) {
                                this.theta = theta;
                                this.endTheta = true;
                                break;
                            }
                        }
                    }
                    if (!this.endPhi) {
                        for (
                            var phi = Math.PI / 8, end = (Math.PI * 7) / 8; phi <= end; phi += (Math.PI * 3) / 4
                        ) {
                            if (this.phi < phi && this.phi + Math.PI / 200 > phi) {
                                this.phi = Math.PI / 8;
                                this.endPhi = true;
                                break;
                            }
                        }
                    }
                }
                if (!this.endTheta) {
                    if (axis.y == this.thresholdY) {
                        this.theta +=
                            (Math.PI / 200) *
                            (this.theta < Math.PI / 2 ||
                                (this.theta >= Math.PI && this.theta < (Math.PI * 3) / 2) ?
                                1 :
                                -1);
                    } else {
                        this.theta += Math.PI / 500;
                    }
                    this.theta %= Math.PI * 2;
                }
                if (this.endPhi) {
                    if (this.rippleCount == this.MAX_RIPPLE_COUNT) {
                        this.psi += this.dpsi;
                        this.psi %= Math.PI * 2;
                    }
                } else {
                    this.phi += Math.PI / (axis.y == this.thresholdY ? 200 : 500);
                    this.phi %= Math.PI;
                }
                if (this.y <= -this.renderer.height * this.SURFACE_RATE) {
                    this.x += 2;
                    this.y = -this.renderer.height * this.SURFACE_RATE;
                } else {
                    this.x += this.vx;
                    this.y += this.vy;
                }
                return (
                    this.z > -this.FOCUS_POSITION &&
                    this.z < this.FAR_LIMIT &&
                    this.x < this.renderer.width * 1.5
                );
            }
        };
        $(function () {
            console.log(6666);
            RENDERER.init();
        });
    </script>
    <style>
        html,
        body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

        .container {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            background-color: #000000;
        }
    </style>
</body>

</html>

css文件是設(shè)置圖片路徑的代碼,先命名為css,可以修改,放置路徑需和Html文件一致。

html圖片旋轉(zhuǎn)效果代碼,html5,前端,html

?

@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

body {
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
}

/*背景音樂*/
.m-main {
    width: 380px;
    height: 60px;
    margin: 0 auto;
    position: fixed;
    right: 30px;
}

.m-main video {
    display: none;
}

.m-main .player {
    width: 100%;
    height: 60px;
    position: relative;
    bottom: 0;
}

.m-main .player>a {
    display: inline-block;
    width: 20px;
    margin: 0 auto;
    padding: 10px;
    color: #FFF;
    text-align: center;
    float: left;
    font-size: 12px
}

.m-main .player>a img {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    left: 41px;
}

#img1 {
    display: block;
}

#img2 {
    display: none;
}

.m-main .play-box {
    width: 300px;
    height: 60px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    right: 0;
}

.m-main .play-box .left {
    width: 100%;
    float: left;
}

.m-main .play-box .left p.timeline {
    width: 33%;
    height: 10px;
    background-color: rgba(216, 216, 216, 0.5);
    border-radius: 5px;
    margin: 30px auto 0;
    position: relative;
    z-index: 2;
}

.m-main .play-box .left p.timeline span {
    position: relative;
    width: 0;
    height: 10px;
    background-color: #D3EEDF;
    border-radius: 5px;
    display: block;
    -webkit-transition: width ease-out 0.3s;
    -o-transition: width ease-out 0.3s;
    transition: width ease-out 0.3s;
}

.m-main .play-box .left p.timeline span:after {
    content: "";
    position: absolute;
    top: -4px;
    right: -0.6rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: green;
}

.m-main .play-box .left div.info {
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    color: #9A9A9A;
    position: relative;
    top: -18px;
    margin: 0 10px;
    z-index: 1;
}

.m-main .play-box .left div.info .size {
    float: left;
    display: block;
}

.m-main .play-box .left div.info .timeshow {
    float: right;
    display: block;
    margin-right: 30px
}

/* ----------------------------------------------- */
li {
    list-style: none;
}

.box {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    position: absolute;
    margin-left: 42%;
    margin-top: 22%;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: rotateX(13deg);
    -webkit-animation: move 5s linear infinite;
}

.minbox {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50px;
    top: 30px;
    -webkit-transform-style: preserve-3d;
}

.minbox li {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
}

.minbox li:nth-child(1) {
    background: url(../img-one/01.jpg) no-repeat;
	background-size: cover;
    -webkit-transform: translateZ(50px);
}

.minbox li:nth-child(2) {
    background: url(../img-one/02.jpg) no-repeat;
	background-size: cover;
    -webkit-transform: rotateX(180deg) translateZ(50px);
    /* transform: rotate(180deg); */
}

.minbox li:nth-child(3) {
    background: url(../img-one/03.jpg) no-repeat;
	background-size: cover;
    -webkit-transform: rotateX(-90deg) translateZ(50px);
}

.minbox li:nth-child(4) {
    background: url(../img-one/04.jpg) no-repeat;
	background-size: cover;
    -webkit-transform: rotateX(90deg) translateZ(50px);
}

.minbox li:nth-child(5) {
    background: url(../img-one/05.jpg) no-repeat;
	background-size: cover;
    -webkit-transform: rotateY(-90deg) translateZ(50px);
}

.minbox li:nth-child(6) {
    background: url(../img-one/06.jpg) no-repeat;
	background-size: cover;
    -webkit-transform: rotateY(90deg) translateZ(50px);
}

.maxbox li:nth-child(1) {
    background: url(../img-one/1.jpg) no-repeat 0 0;
	background-size: cover;
    -webkit-transform: translateZ(50px);
}

.maxbox li:nth-child(2) {
    background: url(../img-one/2.jpg) no-repeat 0 0;
    -webkit-transform: translateZ(50px);
	background-size: cover;
    /* transform: rotate(180deg); */
}

.maxbox li:nth-child(3) {
    background: url(../img-one/3.jpg) no-repeat 0 0;
	background-size: cover;
    -webkit-transform: rotateX(-90deg) translateZ(50px);
}

.maxbox li:nth-child(4) {
    background: url(../img-one/4.jpg) no-repeat 0 0;
	background-size: cover;
    -webkit-transform: rotateX(90deg) translateZ(50px);
}

.maxbox li:nth-child(5) {
    background: url(../img-one/5.jpg) no-repeat 0 0;
	background-size: cover;
    -webkit-transform: rotateY(-90deg) translateZ(50px);
}

.maxbox li:nth-child(6) {
    background: url(../img-one/6.jpg) no-repeat 0 0;
	background-size: cover;
    -webkit-transform: rotateY(90deg) translateZ(50px);
}

.maxbox {
    width: 800px;
    height: 400px;
    position: absolute;
    left: 0;
    top: -20px;
    -webkit-transform-style: preserve-3d;
}

.maxbox li {
    width: 200px;
    height: 200px;
    background: #fff;
    border: 1px solid #ccc;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.2;
    -webkit-transition: all 1s ease;
}

.maxbox li:nth-child(1) {
    -webkit-transform: translateZ(100px);
}

.maxbox li:nth-child(2) {
    -webkit-transform: rotateX(180deg) translateZ(100px);
}

.maxbox li:nth-child(3) {
    -webkit-transform: rotateX(-90deg) translateZ(100px);
}

.maxbox li:nth-child(4) {
    -webkit-transform: rotateX(90deg) translateZ(100px);
}

.maxbox li:nth-child(5) {
    -webkit-transform: rotateY(-90deg) translateZ(100px);
}

.maxbox li:nth-child(6) {
    -webkit-transform: rotateY(90deg) translateZ(100px);
}

.box:hover ol li:nth-child(1) {
    -webkit-transform: translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top: -100px;
}

.box:hover ol li:nth-child(2) {
    -webkit-transform: rotateX(180deg) translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top: -100px;
}

.box:hover ol li:nth-child(3) {
    -webkit-transform: rotateX(-90deg) translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top: -100px;
}

.box:hover ol li:nth-child(4) {
    -webkit-transform: rotateX(90deg) translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top: -100px;
}

.box:hover ol li:nth-child(5) {
    -webkit-transform: rotateY(-90deg) translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top: -100px;
}

.box:hover ol li:nth-child(6) {
    -webkit-transform: rotateY(90deg) translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top: -100px;
}

@keyframes move {
    0% {
        -webkit-transform: rotateX(13deg) rotateY(0deg);
    }

    100% {
        -webkit-transform: rotateX(13deg) rotateY(360deg);
    }
}

?文章來源地址http://www.zghlxwxcb.cn/news/detail-546104.html

到了這里,關(guān)于HTML5+CSS實現(xiàn)圖片3D旋轉(zhuǎn)效果,附音樂的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔相關(guān)法律責任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費用

相關(guān)文章

  • 用HTML、CSS和JavaScript實現(xiàn)鼠標可交互的3D太陽和月亮切換效果

    用HTML、CSS和JavaScript實現(xiàn)鼠標可交互的3D太陽和月亮切換效果

    部分數(shù)據(jù)來源: ChatGPT? 引言 ????????太陽和月亮對于我們來說是一種常見的對比,這篇文章將介紹一個使用HTML、CSS和JavaScript創(chuàng)建的網(wǎng)頁場景,能夠把太陽和月亮切換展示給用戶。這個場景能夠讓用戶使用鼠標和滾輪與場景互動,帶來更多的趣味和體驗。 這里展示了HT

    2024年02月07日
    瀏覽(59)
  • Web前端:HTML+CSS+JS實現(xiàn)美女照片3D立方體旋轉(zhuǎn)(1),網(wǎng)易資深Web前端架構(gòu)師

    Web前端:HTML+CSS+JS實現(xiàn)美女照片3D立方體旋轉(zhuǎn)(1),網(wǎng)易資深Web前端架構(gòu)師

    先自我介紹一下,小編浙江大學畢業(yè),去過華為、字節(jié)跳動等大廠,目前阿里P7 深知大多數(shù)程序員,想要提升技能,往往是自己摸索成長,但自己不成體系的自學效果低效又漫長,而且極易碰到天花板技術(shù)停滯不前! 因此收集整理了一份《2024年最新Web前端全套學習資料》,

    2024年04月23日
    瀏覽(28)
  • 【前端領(lǐng)域】3D旋轉(zhuǎn)超美相冊(HTML+CSS)

    【前端領(lǐng)域】3D旋轉(zhuǎn)超美相冊(HTML+CSS)

    世界上總有一半人不理解另一半人的快樂。 ——《愛瑪》 目錄 一、前言 二、本期作品介紹 ? ?3D旋轉(zhuǎn)相冊 三、效果展示 四、詳細介紹? 五、編碼實現(xiàn) index.html style.css? img ?六、獲取源碼 公眾號獲取源碼? 獲取源碼?私信?關(guān)注?點贊?收藏? ????????新的一年,我們

    2024年02月02日
    瀏覽(25)
  • HTML浪漫動態(tài)表白代碼絢爛星空煙花+粉色大愛心+3D大小魔方旋轉(zhuǎn)相冊+音樂(附源碼)(三)

    HTML浪漫動態(tài)表白代碼絢爛星空煙花+粉色大愛心+3D大小魔方旋轉(zhuǎn)相冊+音樂(附源碼)(三)

    七夕馬上就要到了,為了幫助大家高效表白,下面再給大家加幾款實用的HTML浪漫表白代碼(附源碼)+背景音樂,可用于520,情人節(jié),生日,求愛表白等場景,可直接使用。 來吧,展示! 效果是動態(tài)的 關(guān)鍵代碼修改 修改名字 修改背景音樂,只要把音樂地址修改即可,可與當前

    2024年02月08日
    瀏覽(27)
  • 響應(yīng)式Web開發(fā)項目教程(HTML5+CSS3+Bootstrap)第2版 例3-3 CSS3 旋轉(zhuǎn)縮放

    響應(yīng)式Web開發(fā)項目教程(HTML5+CSS3+Bootstrap)第2版 例3-3 CSS3 旋轉(zhuǎn)縮放

    上述代碼中: 第13行代碼改變了div盒子變形原點 默認旋轉(zhuǎn) 修改變形原點為左下角(transform-origin: left bottom 0px;) 元素的變形都有一個原點,元素圍繞著這個點進行變形或者旋轉(zhuǎn),默認的起始位置就是元素的中心位置。CSS3變形使用transform-origin屬性指定元素變形基于的原點。

    2024年01月16日
    瀏覽(24)
  • HTML5+CSS3+JS小實例:過年3D煙花秀

    HTML5+CSS3+JS小實例:過年3D煙花秀

    實例:過年3D煙花秀 技術(shù)棧:HTML+CSS+JS 效果: 源碼: 【HTML】 【CSS】

    2024年02月03日
    瀏覽(33)
  • 超好看的3D煙花代碼(html+css+js)帶音樂

    超好看的3D煙花代碼(html+css+js)帶音樂

    效果圖 可以修改路徑設(shè)置背景音樂 注意:如果不能自動播放背景音樂,修改瀏覽器的設(shè)置,允許媒體自動播放。 這里是Microsoft edge瀏覽器修改設(shè)置的步驟https://jingyan.baidu.com/article/03b2f78c6f0acc1fa237aef4.html 設(shè)置好后刷新瀏覽器就可以自動播放背景音樂了 3d煙花代碼

    2024年02月03日
    瀏覽(21)
  • HTML5+CSS3小實例:3D翻轉(zhuǎn)Tab選項卡切換特效

    HTML5+CSS3小實例:3D翻轉(zhuǎn)Tab選項卡切換特效

    實例:3D翻轉(zhuǎn)Tab選項卡切換特效 技術(shù)棧:HTML+CSS 效果: 源碼: 【HTML】

    2024年02月04日
    瀏覽(29)
  • 利用html做一個3D 圖片動態(tài)效果

    今天分享一個3D圖片動態(tài)效果 不多廢話上代碼 在倒數(shù)第6行src=后是圖片地址 可以自行更改 如有侵權(quán)請聯(lián)系352648773@qq.com郵箱 插一條:如果有人想要一些好玩的腳本(vbs,bat,html)同樣聯(lián)系我郵箱

    2024年02月11日
    瀏覽(24)
  • HTML5+CSS3小實例:帶標題的3D多米諾人物卡片

    HTML5+CSS3小實例:帶標題的3D多米諾人物卡片

    實例:帶標題的3D多米諾人物卡片 技術(shù)棧:HTML+CSS 效果: 源碼: 【html】

    2024年02月14日
    瀏覽(27)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包