Je vois souvent d'autres personnes implémenter de belles cases à cocher ou des boutons radio lors du travail frontal. Pour des raisons de projet actuel, de nombreuses cases radio et cases à cocher semblent très laides, j'ai donc décidé de créer les miennes sur un coup de tête. . Je l'ai encore réalisé.
1. Tout d'abord, ajoutez le code css :
Parmi eux, je l'ai écrit sous forme de commentaires ; >À propos J'ai défini le z-index en fonction des considérations de positionnement initiales. Si quelqu'un veut l'utiliser ici, réfléchissez-y par vous-même
/*复选框效果*/ input[type=checkbox] { width:16px; height:16px; z-index:10; } /* 此处不解释,定义的是复选框宽高*/ input[type=checkbox]::before { content:" "; display:inline-block; color:#000; width:16px; height:16px; background:#fff; border:1px #1ab394 solid; z-index:9; position: absolute; }/* 此处定义的是在没有选中的情况下的样式,利用::before设置空的content实现 */ input[type=checkbox]:checked::before { content:"\f00c"; color:#1ab394; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* 此处定义复选框选中时候的样式,此处 在before的content里使用\f00c的awesome字体来实现,这个字体值表示打勾*/ /* 单选框效果 */ input[type=radio] { width:16px; height:16px; z-index:10; } input[type=radio]::before { content:" "; display:inline-block; color:#000; width:16px; height:16px; border-radius:8px; background:#fff; border:1px #1ab394 solid; z-index:9; position: absolute; } input[type=radio]:checked::after { content:" "; display:inline-block; width:8px; height:8px; background:#1ab394; border-radius:50%; position:absolute; z-index:11; top:4px; left:4px; } /*以上的单选框和复选框类似,但此处选中不是采用更换字体,目前来说,没发现有适合的字体适用于里面的圆点,所以采用after设置一个长宽为8像素的块并设置圆角调整位置放到外层边框内容里实现*/
1. Tout d'abord, ajoutez le code css :
Parmi eux, je l'ai écrit sous forme de commentaires ; >À propos J'ai défini le z-index en fonction des considérations de positionnement initiales. Si quelqu'un veut l'utiliser ici, réfléchissez-y par vous-même
/*复选框效果*/ input[type=checkbox] { width:16px; height:16px; z-index:10; } /* 此处不解释,定义的是复选框宽高*/ input[type=checkbox]::before { content:" "; display:inline-block; color:#000; width:16px; height:16px; background:#fff; border:1px #1ab394 solid; z-index:9; position: absolute; }/* 此处定义的是在没有选中的情况下的样式,利用::before设置空的content实现 */ input[type=checkbox]:checked::before { content:"\f00c"; color:#1ab394; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* 此处定义复选框选中时候的样式,此处 在before的content里使用\f00c的awesome字体来实现,这个字体值表示打勾*/ /* 单选框效果 */ input[type=radio] { width:16px; height:16px; z-index:10; } input[type=radio]::before { content:" "; display:inline-block; color:#000; width:16px; height:16px; border-radius:8px; background:#fff; border:1px #1ab394 solid; z-index:9; position: absolute; } input[type=radio]:checked::after { content:" "; display:inline-block; width:8px; height:8px; background:#1ab394; border-radius:50%; position:absolute; z-index:11; top:4px; left:4px; } /*以上的单选框和复选框类似,但此处选中不是采用更换字体,目前来说,没发现有适合的字体适用于里面的圆点,所以采用after设置一个长宽为8像素的块并设置圆角调整位置放到外层边框内容里实现*/
L'image ci-dessus est la capture d'écran réelle de mon application.
Pour plus d'articles connexes utilisant CSS3 combiné avec des polices fontawesome pour implémenter des effets de case à cocher de bouton radio personnalisés, veuillez faire attention au site Web PHP chinois ! Article précédent : Comment faut-il penser lorsqu'on écrit un programme ? -->