2023/5/15

css 伪元素实现文本左侧竖杠

/* 文章详情页自定义样式*/ .entry-content h4{ position: relative; font-size: 16px; font-weight: 600; padding-left: 14px; margin-top: 14px; margin-bottom: 14px; } .entry-conten…

  • css
  • 2023/5/15
  • 566
  • 2022/1/18

    vue scss 实现3D球体照片墙

    演示地址 gitee代码地址 <template> <div> <ul v-for="ulnum in 25" :key="ulnum" :class="'ulnum-'+ulnum"> <view …

  • css vue
  • 2022/1/18
  • 753
  • 2021/9/27

    css旋转动画

    <!DOCTYPE html> <html> <head>   <meta charset="UTF-8">   <meta name="viewport" content="width=device-wi…

  • css html
  • 2021/9/27
  • 868
  • 2021/3/25

    html 文本渐变

    background-image:-webkit-linear-gradient(bottom,red,#fd8403,yellow); -webkit-background-clip:text; -webkit-text-fill-color:transparent;

  • css html
  • 2021/3/25
  • 974
  • 2020/11/2

    js css让img元素图片自动旋转

    var rotateVal = 0 // 旋转角度 var InterVal // 定时器 function conMusic(){     //var audio = document.querySelector(&…

  • css html JavaScript
  • 2020/11/2
  • 1,159
  • 2020/9/27

    html自定义滚动条样式

    <html>     <style>         html,body{             width:100%; &…

  • css html JavaScript
  • 2020/9/27
  • 1,213
  • 2020/8/17

    ul li修改默认图标/ul li自定义图标

    height:40px; list-style-image: none; background:url( "images/wjx.png" ) no-repeat  left center;/* 使用背景图片替换 默认图标*/ line-height:40p…

  • css
  • 2020/8/17
  • 974